We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b76883 commit b46cc09Copy full SHA for b46cc09
1 file changed
.github/workflows/conda_env_test.yml
@@ -75,10 +75,10 @@ jobs:
75
run: |
76
if [[ "${{ runner.os }}" == "Windows" ]]; then
77
echo "Entering Windows block"
78
- .venv\Scripts\activate
+ test-env-${{ matrix.environment.name }}\Scripts\activate
79
else
80
echo "Entering non-Windows block"
81
- source .venv/bin/activate
+ source test-env-${{ matrix.environment.name }}/bin/activate
82
fi
83
uv pip install -r ${{ matrix.environment.req-file }}
84
@@ -88,8 +88,8 @@ jobs:
88
shell: bash
89
90
91
92
93
94
95
uv run pytest --numprocesses=auto -k 'not (links or update_nmisp_py)' tests/
0 commit comments