Skip to content

Commit 518974e

Browse files
committed
Proper setting of env var
1 parent b50e909 commit 518974e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/python-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ jobs:
9797
run: make install
9898
- name: Run integration tests with coverage
9999
run: COVERAGE=1 make test-integration
100+
env:
101+
RAY_ENABLE_UV_RUN_RUNTIME_ENV: "0"
100102
- name: Show debug logs
101103
if: ${{ failure() }}
102104
run: docker compose -f dev/docker-compose-integration.yml logs

tests/conftest.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3032,11 +3032,8 @@ def pyarrow_table_with_promoted_types(pyarrow_schema_with_promoted_types: "pa.Sc
30323032
@pytest.fixture(scope="session")
30333033
def ray_session() -> Generator[Any, None, None]:
30343034
"""Fixture to manage Ray initialization and shutdown for tests."""
3035-
import os
3036-
30373035
import ray
30383036

3039-
os.environ["RAY_ENABLE_UV_RUN_RUNTIME_ENV"] = "0"
30403037
ray.init(
30413038
ignore_reinit_error=True,
30423039
)

0 commit comments

Comments
 (0)