Skip to content

Commit a4032fb

Browse files
committed
pytest fix attempt 3
1 parent dad0f75 commit a4032fb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
matrix:
99
python-version: ["3.7", "3.9", "3.11"]
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Set up Python ${{ matrix.python-version }}
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Install dependencies
@@ -24,8 +24,9 @@ jobs:
2424
pipenv install -e .
2525
- name: Test with pytest
2626
run: |
27+
pipenv shell
2728
pipenv install pytest
28-
pipenv run pytest
29+
pipenv run python -m pytest
2930
deliver:
3031
needs: [build]
3132
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)