summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJames E. Blair <jim@acmegating.com>2021-08-05 06:42:33 -0700
committerJames E. Blair <jim@acmegating.com>2021-08-09 08:49:29 -0700
commitf718b16844c576c6d4bafcbb09601fec1e751ff0 (patch)
treeef39d0e218ce25b5d234b3734a8a10dbb32fd28e /tox.ini
parentc8ea9be2bef36deb103fa3a7a3a8d6ea597ff8b9 (diff)
downloadzuul-f718b16844c576c6d4bafcbb09601fec1e751ff0.tar.gz
Stop running mypy in linters
We aren't generally using type annotations, and mypy itself is somewhat flawed, occasionally producing false positives and rarely catching errors. Stop running it. Change-Id: I6f24457f7d99ca11ec9228e505e6edec558baf9e
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 0 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 61ed2e51e..b686e93f7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -54,16 +54,11 @@ commands = bindep test
[testenv:linters]
usedevelop = False
install_command = pip install {opts} {packages}
-# --ignore-missing-imports tells mypy to not try to follow imported modules
-# out of the current tree. As you might expect, we don't want to run static
-# type checking on the world - just on ourselves.
deps =
flake8
- mypy<0.790
openapi-spec-validator
commands =
flake8 {posargs}
- mypy
openapi-spec-validator web/public/openapi.yaml
[testenv:cover]