Skip to content

v1.0.3

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Jun 22:56
· 13 commits to main since this release
9800fd8

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_python_pytest",
    sha256 = "1c5fef81ba85c6bc96ba6ae9f26f95c593bc9f09eb727a9893735598eb6a0be5",
    strip_prefix = "rules_python_pytest-1.0.3",
    url = "https://github.com/caseyduquettesc/rules_python_pytest/archive/v1.0.3.tar.gz",
)

# Fetches the rules_python_pytest dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@rules_python_pytest//python_pytest:repositories.bzl", "rules_python_pytest_dependencies")
rules_python_pytest_dependencies()

What's Changed

  • Avoid passing init.py files to pytest to mitigate bug by @amartani in #3

Full Changelog: v1.0.2...v1.0.3