Skip to content

Commit 95ad6cc

Browse files
authored
chore: Bump rules_testing to 0.4.0 from 0.0.5 (#1306)
This uses the 0.4.0 release of rules_python, which has several features we can make use of * Various internal APIs have been made public * target_compatible_with can be set to skip tests by platform * Unit tests are easier to write Also adds rules_license 0.0.7, which is a dependency of rules_testing. Work towards #1297
1 parent 3608207 commit 95ad6cc

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

internal_deps.bzl

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,23 @@ def rules_python_internal_deps():
4242
],
4343
sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2",
4444
)
45+
4546
maybe(
4647
http_archive,
4748
name = "rules_testing",
48-
sha256 = "0c2abee201f566a088c720e12bc1d968bc56e6a51b692d9c81b1fe861bdf2be2",
49-
strip_prefix = "rules_testing-0.0.5",
50-
url = "https://github.com/bazelbuild/rules_testing/releases/download/v0.0.5/rules_testing-v0.0.5.tar.gz",
49+
sha256 = "8df0a8eb21739ea4b0a03f5dc79e68e245a45c076cfab404b940cc205cb62162",
50+
strip_prefix = "rules_testing-0.4.0",
51+
url = "https://github.com/bazelbuild/rules_testing/releases/download/v0.4.0/rules_testing-v0.4.0.tar.gz",
52+
)
53+
54+
maybe(
55+
http_archive,
56+
name = "rules_license",
57+
urls = [
58+
"https://mirror.bazel.build/github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz",
59+
"https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz",
60+
],
61+
sha256 = "4531deccb913639c30e5c7512a054d5d875698daeb75d8cf90f284375fe7c360",
5162
)
5263

5364
maybe(

0 commit comments

Comments
 (0)