diff options
| author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-13 18:58:24 +0200 | 
|---|---|---|
| committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-13 18:58:24 +0200 | 
| commit | 84a494dcf4b237e2e5640b8a14dbeb16a29b3de7 (patch) | |
| tree | 02742314cbc1fd19f27d3165a5023371487e7610 | |
| parent | 5b1f14a09d38f6a9861d3cb1b3cf2b27da04c62e (diff) | |
Run mypy with tests and qa
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | mypy.ini | 7 | ||||
| -rwxr-xr-x | run_tests | 1 | 
3 files changed, 9 insertions, 0 deletions
| @@ -1,4 +1,5 @@  .coverage +.mypy_cache  *.pyc  .*.sw? diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..4447f48 --- /dev/null +++ b/mypy.ini @@ -0,0 +1,7 @@ +[mypy] + +[mypy-ruamel.*] +ignore_missing_imports = True + +[mypy-tornado.*] +ignore_missing_imports = True @@ -2,3 +2,4 @@  nose2-3 --with-coverage --coverage-report=term  flake8 . +mypy pyapd | 
