Skip to content

v1.0.7

Compare
Choose a tag to compare
@github-actions github-actions released this 31 Jul 00:54
· 6 commits to main since this release
4a4fa85

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "caseyduquettesc_rules_python_pytest", version = "1.0.7", 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 = "7b7086c19beea3fa78e6312fd517ae2c1280631889b0cb07bc5c07b1f1621e45",
    strip_prefix = "rules_python_pytest-1.0.7",
    url = "https://github.com/caseyduquettesc/rules_python_pytest/releases/download/v1.0.7/rules_python_pytest-v1.0.7.tar.gz",
)

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

rules_python_pytest_dependencies()

What's Changed

Full Changelog: v1.0.6...v1.0.7