Skip to content

Commit

Permalink
Disallow untyped defs in mypy check
Browse files Browse the repository at this point in the history
  • Loading branch information
windymilla committed Nov 23, 2024
1 parent 65fc401 commit a256517
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
poetry run python -m sphinx -M coverage docs docs/build -W
- name: Static type check with mypy
run: |
poetry run mypy -p guiguts
poetry run mypy tests
poetry run mypy --disallow-untyped-defs -p guiguts
poetry run mypy --disallow-untyped-defs tests
- name: Test with pytest
run: |
poetry run pytest

0 comments on commit a256517

Please sign in to comment.