Skip to content

Commit

Permalink
cleanup install
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonycorletti committed Jun 8, 2023
1 parent 24168a1 commit e4033a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
run: pip install invoke

- name: install dependencies
if: ${{ matrix.python-version }} != "3.7"
run: inv install

- name: install dependencies (python 3.7)
if: ${{ matrix.python-version }} == "3.7"
run: inv install --no-editable -e dev,test,doc,py37
run: |
if [[ ${{ matrix.python-version }} == "3.7" ]]; then
inv install --no-editable -e dev,test,doc,py37
else
inv install --no-editable
fi
- name: test
run: inv test
Expand Down

0 comments on commit e4033a4

Please sign in to comment.