Skip to content

Commit 403cb73

Browse files
committed
Split pipenv and environment installations
1 parent 24bae41 commit 403cb73

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
architecture: "x64"
2929
cache: "pipenv"
3030
cache-dependency-path: Pipfile.lock
31-
- name: Install python dependencies
32-
run: |
33-
pip install --prefer-binary -r requirements.txt
34-
pipenv install --dev
31+
- name: Install pipenv
32+
run: pip install --prefer-binary -r requirements.txt
33+
- name: Install environment dependencies
34+
run: pipenv sync --dev
3535
- name: Run tests
3636
run: pipenv run python -m unittest
3737
env:

0 commit comments

Comments
 (0)