Skip to content

Commit b46cc09

Browse files
committed
ci : fix venv name
1 parent 8b76883 commit b46cc09

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/conda_env_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ jobs:
7575
run: |
7676
if [[ "${{ runner.os }}" == "Windows" ]]; then
7777
echo "Entering Windows block"
78-
.venv\Scripts\activate
78+
test-env-${{ matrix.environment.name }}\Scripts\activate
7979
else
8080
echo "Entering non-Windows block"
81-
source .venv/bin/activate
81+
source test-env-${{ matrix.environment.name }}/bin/activate
8282
fi
8383
uv pip install -r ${{ matrix.environment.req-file }}
8484
@@ -88,8 +88,8 @@ jobs:
8888
shell: bash
8989
run: |
9090
if [[ "${{ runner.os }}" == "Windows" ]]; then
91-
.venv\Scripts\activate
91+
test-env-${{ matrix.environment.name }}\Scripts\activate
9292
else
93-
source .venv/bin/activate
93+
source test-env-${{ matrix.environment.name }}/bin/activate
9494
fi
9595
uv run pytest --numprocesses=auto -k 'not (links or update_nmisp_py)' tests/

0 commit comments

Comments
 (0)