Skip to content

Commit 914eb48

Browse files
committed
disable the new test on windows
1 parent cd9f84d commit 914eb48

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/base_rules/py_executable_base_tests.bzl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ _tests.append(_test_basic_windows)
6969

7070
def _test_basic_zip(name, config):
7171
if rp_config.enable_pystar:
72-
target_compatible_with = []
72+
target_compatible_with = select({
73+
# Disable the new test on windows because we have _test_basic_windows.
74+
"@platforms//os:windows": ["@platforms//:incompatible"],
75+
"//conditions:default": [],
76+
})
7377
else:
7478
target_compatible_with = ["@platforms//:incompatible"]
7579
rt_util.helper_target(

0 commit comments

Comments
 (0)