Skip to content

Commit

Permalink
Skip type checking in CI
Browse files Browse the repository at this point in the history
There's an issue building uwsgi that's stopping the type checking, but
doesn't affect the pytest environments?
  • Loading branch information
jonathansick committed May 21, 2024
1 parent 1cf5097 commit ec2bae0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,13 @@ jobs:
LTD_KEEPER_TEST_AWS_ID: ${{ secrets.LTD_KEEPER_TEST_AWS_ID }}
LTD_KEEPER_TEST_AWS_SECRET: ${{ secrets.LTD_KEEPER_TEST_AWS_SECRET }}
LTD_KEEPER_TEST_BUCKET: ${{ secrets.LTD_KEEPER_TEST_BUCKET }}
run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path
# run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path
run: tox -e ${{matrix.db}},coverage-report # run tox using Python in path

- name: Run tox without external services
if: ${{ !(matrix.python != '3.10' && matrix.db != 'postgres') }}
run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path
# run: tox -e typing,${{matrix.db}},coverage-report # run tox using Python in path
run: tox -e ${{matrix.db}},coverage-report # run tox using Python in path

docs:
runs-on: ubuntu-latest
Expand Down

0 comments on commit ec2bae0

Please sign in to comment.