Skip to content

Commit bd1d144

Browse files
committed
Move RAY_ENABLE_UV_RUN_RUNTIME_ENV closer to impact
1 parent f43c6a5 commit bd1d144

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

117117
test-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

120120
test-integration-cleanup: ## Clean up integration test environment
121121
@if [ "${KEEP_COMPOSE}" != "1" ]; then \

tests/conftest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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")
30333037
def ray_session() -> Generator[Any, None, None]:
30343038
"""Fixture to manage Ray initialization and shutdown for tests."""

0 commit comments

Comments
 (0)