|
12 | 12 | # See the License for the specific language governing permissions and |
13 | 13 | # limitations under the License. |
14 | 14 |
|
15 | | -load("@bazel_binaries//:defs.bzl", "bazel_binaries") |
16 | 15 | load("@rules_bazel_integration_test//bazel_integration_test:defs.bzl", "default_test_runner") |
17 | 16 | load("//python:py_library.bzl", "py_library") |
18 | 17 | load(":integration_test.bzl", "rules_python_integration_test") |
@@ -78,31 +77,33 @@ rules_python_integration_test( |
78 | 77 |
|
79 | 78 | rules_python_integration_test( |
80 | 79 | name = "ignore_root_user_error_test", |
| 80 | + env = { |
| 81 | + "RULES_PYTHON_BZLMOD_DEBUG": "1", |
| 82 | + }, |
81 | 83 | ) |
82 | 84 |
|
83 | 85 | rules_python_integration_test( |
84 | 86 | name = "ignore_root_user_error_workspace_test", |
85 | 87 | bzlmod = False, |
| 88 | + env = { |
| 89 | + "RULES_PYTHON_BZLMOD_DEBUG": "1", |
| 90 | + }, |
86 | 91 | workspace_path = "ignore_root_user_error", |
87 | 92 | ) |
88 | 93 |
|
89 | 94 | rules_python_integration_test( |
90 | 95 | name = "local_toolchains_test", |
91 | | - bazel_versions = [ |
92 | | - version |
93 | | - for version in bazel_binaries.versions.all |
94 | | - if not version.startswith("6.") |
95 | | - ], |
| 96 | + env = { |
| 97 | + "RULES_PYTHON_BZLMOD_DEBUG": "1", |
| 98 | + }, |
96 | 99 | ) |
97 | 100 |
|
98 | 101 | rules_python_integration_test( |
99 | 102 | name = "local_toolchains_workspace_test", |
100 | | - bazel_versions = [ |
101 | | - version |
102 | | - for version in bazel_binaries.versions.all |
103 | | - if not version.startswith("6.") |
104 | | - ], |
105 | 103 | bzlmod = False, |
| 104 | + env = { |
| 105 | + "RULES_PYTHON_BZLMOD_DEBUG": "1", |
| 106 | + }, |
106 | 107 | workspace_path = "local_toolchains", |
107 | 108 | ) |
108 | 109 |
|
|
0 commit comments