ci: fix mypy and pytest-cov after clean

This commit is contained in:
scito
2022-12-30 17:49:46 +01:00
parent 0566683203
commit f97d7143c5
2 changed files with 5 additions and 5 deletions

View File

@@ -46,8 +46,8 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=200 --statistics
- name: Type checking with mypy
run: |
mypy --install-types --non-interactive src tests
mypy --strict src tests
mypy --install-types --non-interactive src/*.py tests/*.py
mypy --strict src/*.py tests/*.py
if: matrix.python-version == '3.x'
- name: Test with pytest
run: pytest