File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ test-integration-setup: install ## Start Docker services for integration tests
115115 uv run $(PYTHON_ARG ) python dev/provision.py
116116
117117test-integration-exec : # # Run integration tests (excluding provision)
118- RAY_ENABLE_UV_RUN_RUNTIME_ENV=0 $(TEST_RUNNER ) pytest tests/ -m integration $(PYTEST_ARGS )
118+ $(TEST_RUNNER ) pytest tests/ -m integration $(PYTEST_ARGS )
119119
120120test-integration-cleanup : # # Clean up integration test environment
121121 @if [ " ${KEEP_COMPOSE} " != " 1" ]; then \
Original file line number Diff line number Diff line change @@ -3029,6 +3029,10 @@ def pyarrow_table_with_promoted_types(pyarrow_schema_with_promoted_types: "pa.Sc
30293029 )
30303030
30313031
3032+ def pytest_configure (config : pytest .Config ) -> None :
3033+ os .environ ["RAY_ENABLE_UV_RUN_RUNTIME_ENV" ] = "0"
3034+
3035+
30323036@pytest .fixture (scope = "session" )
30333037def ray_session () -> Generator [Any , None , None ]:
30343038 """Fixture to manage Ray initialization and shutdown for tests."""
You can’t perform that action at this time.
0 commit comments