We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd1d144 commit 3cf28e8Copy full SHA for 3cf28e8
1 file changed
tests/conftest.py
@@ -3030,6 +3030,11 @@ def pyarrow_table_with_promoted_types(pyarrow_schema_with_promoted_types: "pa.Sc
3030
3031
3032
def pytest_configure(config: pytest.Config) -> None:
3033
+ # Disable Ray's automatic uv environment propagation to workers.
3034
+ # When tests are invoked via `uv run`, Ray detects the wrapper and tries
3035
+ # to package the working directory for remote workers, which is unnecessary
3036
+ # and problematic in local single-node test mode
3037
+ # See https://docs.ray.io/en/latest/_modules/ray/_private/worker.html
3038
os.environ["RAY_ENABLE_UV_RUN_RUNTIME_ENV"] = "0"
3039
3040
0 commit comments