Skip to content

Commit

Permalink
Add poetry requirement to local CI to ensure proper installation
Browse files Browse the repository at this point in the history
  • Loading branch information
enpaul committed Dec 5, 2020
1 parent 99edc1c commit 66c1925
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
- name: Setup:env
run: .github/scripts/setup-env.sh
- name: Run:${{ matrix.python.toxenv }}
run: $HOME/ci/bin/tox -e ${{ matrix.python.toxenv }}
run: $HOME/ci/bin/tox \
-e ${{ matrix.python.toxenv }} \
--require-poetry
Check:
runs-on: ubuntu-latest
steps:
Expand All @@ -63,8 +65,8 @@ jobs:
- name: Setup:env
run: .github/scripts/setup-env.sh
- name: Run:static
run: $HOME/ci/bin/tox -e static
run: $HOME/ci/bin/tox -e static --require-poetry
- name: Run:static-tests
run: $HOME/ci/bin/tox -e static-tests
run: $HOME/ci/bin/tox -e static-tests --require-poetry
- name: Run:security
run: $HOME/ci/bin/tox -e security
run: $HOME/ci/bin/tox -e security --require-poetry

0 comments on commit 66c1925

Please sign in to comment.