Skip to content

Commit

Permalink
Merge pull request #78 from sbrunner/type
Browse files Browse the repository at this point in the history
Activate type check
  • Loading branch information
sbrunner authored May 23, 2021
2 parents 328fc59 + beb200a commit ca14a5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
run: c2cciutils-checks

- run: pipenv sync --system --dev
- run: python3 -m pip install --quiet --user -e .
- run: prospector .
- run: pipenv run prospector .
- run: >
coverage run --source=deskew --module pytest --durations=0 --verbose --color=yes
pipenv run coverage run --source=deskew --module pytest --durations=0 --verbose --color=yes
--profile --profile-svg --junitxml=results/test-reports/junit.xml tests &&
coverage report &&
coverage html --directory=results/coverage
Expand Down
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ ignore = E722
[mypy]
python_version = 3.8
ignore_missing_imports = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
strict = True

[bdist_wheel]
universal = 1
Expand Down

0 comments on commit ca14a5b

Please sign in to comment.