We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bd78fe commit 66521acCopy full SHA for 66521ac
distro/BUILD
@@ -93,6 +93,7 @@ py_test(
93
data = [
94
"testdata/BUILD.tpl",
95
":distro",
96
+ ":small_module",
97
"//:standard_package",
98
],
99
imports = [".."],
distro/packaging_test.py
@@ -38,7 +38,7 @@ def setUp(self):
38
def testVersionsMatch(self):
39
"""version.bzl must match MODULE.bazel"""
40
module_bazel_path = self.data_files.Rlocation(
41
- 'rules_pkg/MODULE.bazel')
+ 'rules_pkg/distro/MODULE.bazel')
42
with open(module_bazel_path, encoding="utf-8") as inp:
43
want = 'version = "%s"' % self.version
44
content = inp.read()
0 commit comments