Skip to content

Commit

Permalink
fix 3.7 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gruebel committed Sep 16, 2023
1 parent 8f7ebe7 commit 6007ff3
Show file tree
Hide file tree
Showing 2 changed files with 588 additions and 496 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,13 @@ jobs:
# remove venv, if exists
pipenv --rm || true
pipenv --python ${{ matrix.python }}
pipenv install --dev -v
# TODO: remove 3.7 end of September
if [ ${{ matrix.python }} == '3.7' ]; then
pipenv install --skip-lock --dev -v
else
pipenv install --dev -v
fi
- name: Unit tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading

0 comments on commit 6007ff3

Please sign in to comment.