Skip to content

v1.0.5

Compare
Choose a tag to compare
@github-actions github-actions released this 28 Jul 06:12
· 8 commits to main since this release

This version was never published to BCR. Use v1.0.7

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "com_github_caseyduquettesc_rules_python_pytest", version = "1.0.5", repo_name = "rules_python_pytest")

Using WORKSPACE

Paste this snippet into your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_python_pytest",
    sha256 = "371fb400311ce0c1b924de74eba4bd8872deb58b4bff6385448cd2102149d13d",
    strip_prefix = "rules_python_pytest-1.0.5",
    url = "https://github.com/caseyduquettesc/rules_python_pytest/releases/download/v1.0.5/rules_python_pytest-v1.0.5.tar.gz",
)

load("@rules_python_pytest//python_pytest:repositories.bzl", "rules_python_pytest_dependencies")

rules_python_pytest_dependencies()

Full Changelog: v1.0.4...v1.0.5