Skip to content

Commit 3ab437c

Browse files
committed
ci: reorder pip install commands in test workflow for better dependency management
1 parent 21bdf4f commit 3ab437c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@ jobs:
2323
- name: Install deps
2424
run: |
2525
pip install -r requirements/requirements.txt
26+
pip install -r requirements/test.txt
2627
if [ "${{ matrix.urllib3-line }}" = "lt2" ]; then
2728
pip install "urllib3<2"
2829
else
2930
pip install "urllib3!=2.0.0,<3"
3031
fi
3132
pip install -e .
32-
- name: Install Tox and any other packages
33-
run: pip install -r requirements/test.txt
3433
- name: Run Tox
3534
run: tox -e py
3635
- name: Upload Coverage to codecov

0 commit comments

Comments
 (0)