Skip to content

Commit 6c08221

Browse files
committed
add notes and exclude tests on Windows
1 parent 052ff64 commit 6c08221

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/uv/lock/lock_tests.bzl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,21 @@ def lock_test_suite(name):
6363
main = "lock_run_test.py",
6464
tags = [
6565
"requires-network",
66+
# FIXME @aignas 2025-03-19: it seems that the RBE tests are failing
67+
# to execute the `requirements.run` targets that require network.
68+
#
69+
# We could potentially dump the required `.html` files and somehow
70+
# provide it to the `uv`, but may rely on internal uv handling of
71+
# `--index-url`.
72+
"no-remote-exec",
6673
],
74+
# FIXME @aignas 2025-03-19: It seems that currently:
75+
# 1. The Windows runners are not compatible with the `uv` Windows binaries.
76+
# 2. The Python launcher is having trouble launching scripts from within the Python test.
77+
target_compatible_with = select({
78+
"@platforms//os:windows": ["@platforms//:incompatible"],
79+
"//conditions:default": [],
80+
}),
6781
)
6882

6983
# document and check that this actually works

0 commit comments

Comments
 (0)