Skip to content

Commit

Permalink
Eager update dependencies in test-future workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Feb 21, 2022
1 parent 360b367 commit e8dad9b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-future.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
run: |
# strict dependency resolution added in pip 20.3
python -m pip install --upgrade 'pip>=20.3'
pip install -e '.[isort,test]' --constraint constraints-future.txt
pip install \
--constraint=constraints-future.txt \
--upgrade \
--upgrade-strategy=eager \
-e '.[isort,test]'
- name: Test with pytest
run: |
pytest

0 comments on commit e8dad9b

Please sign in to comment.