Skip to content

Commit b8bee54

Browse files
committed
using pipenv
1 parent ba8fecf commit b8bee54

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,14 @@ jobs:
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434

35+
- name: install pipenv
36+
run: pip install pipenv
37+
38+
- name: create pipenv shell
39+
run: pipenv shell
40+
41+
- name: install dependencies
42+
run: pipenv install --ignore-pipfile
43+
3544
- name: pytest
36-
run: |
37-
pip install -e .
38-
pip install pytest
39-
pytest
45+
run: pytest

0 commit comments

Comments
 (0)