Skip to content

Commit 96cf02a

Browse files
committed
Remove redundant installation step
1 parent c3aa475 commit 96cf02a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ jobs:
2323
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- name: (Python 3.7) Install dependencies
27-
if: ${{ matrix.python-version == '3.7' }}
28-
run: python -m pip install deprecation python-dotenv pytest
29-
- name: (Python >= 3.9) Install dependencies
30-
if: ${{ matrix.python-version != '3.7' }}
26+
- name: Install dependencies
3127
run: python -m pip install . --group test
3228
- name: Run entire test suite
3329
run: python -m pytest ./tests

0 commit comments

Comments
 (0)