Enforce mypy checks

pull/439/head
Kieran R. Prasch 2018-09-01 06:40:41 -07:00 committed by tuxxy
parent b4a11896c3
commit 3c4793addc
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ jobs:
command: |
mkdir ./mypy_reports ./mypy_results
export MYPYPATH=./nucypher
pipenv run mypy ./nucypher --config-file=mypy.ini --xslt-html-report ./mypy_reports/html/ --linecount-report ./mypy_reports/linecount --junit-xml ./mypy_results/results.xml || true
pipenv run mypy ./nucypher --config-file=mypy.ini --xslt-html-report ./mypy_reports/html/ --linecount-report ./mypy_reports/linecount --junit-xml ./mypy_results/results.xml
- store_artifacts:
path: ./mypy_reports
- store_test_results:

View File

@ -1,7 +1,7 @@
[mypy]
python_version=3.6
verbosity=0
[mypy-nucypher.*]
disallow_untyped_defs=False
check_untyped_defs=False
disallow_untyped_calls=False