Skip to content

v1.1.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jul 00:24
· 1 commit to main since this release
5591c0b

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.1.1", 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 = "e2556404ef56ea3ec938597616afc51d78e1832cfe511b196e9f2b8fd7f8f149",
    strip_prefix = "rules_python_pytest-1.1.1",
    url = "https://github.com/caseyduquettesc/rules_python_pytest/releases/download/v1.1.1/rules_python_pytest-v1.1.1.tar.gz",
)

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

rules_python_pytest_dependencies()

What's Changed

  • Do not mangle arguments on newer pytest versions by @amartani in #11
  • Do not convert --test_filter a.py to a::py by @raylu in #12

New Contributors

  • @raylu made their first contribution in #12

Full Changelog: v1.1.0...v1.1.1