Skip to content

Commit 2bb41b4

Browse files
committed
Fix show-packages
1 parent dba99f8 commit 2bb41b4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
uses: actions/setup-python@v5
4141
with:
4242
python-version: ${{ matrix.python-version }}
43-
- name: Show installed packages
44-
run: |
45-
python -m pip list
4643
- name: Install dependencies
4744
run: |
4845
python -m pip install uv
4946
python -m uv pip install --system -r requirements/required.txt -r requirements/test.txt
47+
- name: Show installed packages
48+
run: |
49+
python -m pip list
5050
- name: Test with pytest
5151
run: pytest -v -n 3
5252

@@ -58,12 +58,12 @@ jobs:
5858
uses: actions/setup-python@v5
5959
with:
6060
python-version: "3.9"
61-
- name: Show installed packages
62-
run: |
63-
python -m pip list
6461
- name: Install dependencies
6562
run: |
6663
python -m pip install uv
6764
python -m uv pip install --system -r requirements/minimum.old -r requirements/test.txt
65+
- name: Show installed packages
66+
run: |
67+
python -m pip list
6868
- name: Test with pytest
6969
run: pytest -v -n 3

0 commit comments

Comments
 (0)