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 cd9f84d commit 914eb48Copy full SHA for 914eb48
tests/base_rules/py_executable_base_tests.bzl
@@ -69,7 +69,11 @@ _tests.append(_test_basic_windows)
69
70
def _test_basic_zip(name, config):
71
if rp_config.enable_pystar:
72
- target_compatible_with = []
+ 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
+ })
77
else:
78
target_compatible_with = ["@platforms//:incompatible"]
79
rt_util.helper_target(
0 commit comments