aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--mypy.ini7
-rwxr-xr-xrun_tests1
3 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e933fda..0ae4832 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/run_tests b/run_tests
index b609f1f..dcd5f15 100755
--- a/run_tests
+++ b/run_tests
@@ -2,3 +2,4 @@
nose2-3 --with-coverage --coverage-report=term
flake8 .
+mypy pyapd