v1.0.2
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_python_pytest",
sha256 = "334a0ac91a0d6a87df499cdf9b70b525754dc8ca4873763116d67177f759389f",
strip_prefix = "rules_python_pytest-1.0.2",
url = "https://github.com/caseyduquettesc/rules_python_pytest/archive/v1.0.2.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
New Contributors
Full Changelog: v1.0.1...v1.0.2