summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-25 11:12:37 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-25 11:12:37 +0100
commit4a9dea0aef8ae4caa6416226e920b06d6da34e8f (patch)
treeb230ed703dcc2d1dfe3833af40f7612575b91f09 /tox.ini
parent11f231f7aa2b16fb92b93366ebb9b354f2f0fb2b (diff)
downloadqutebrowser-4a9dea0aef8ae4caa6416226e920b06d6da34e8f.tar.gz
qutebrowser-4a9dea0aef8ae4caa6416226e920b06d6da34e8f.zip
tox: Don't run mypy over tests/
With https://github.com/python/mypy/pull/9614, mypy now tries to collect all files in tests/, but it fails due to: tests/end2end/conftest.py: error: Duplicate module named 'conftest' (also at 'tests/end2end/features/conftest.py') tests/end2end/conftest.py: error: Are you missing an __init__.py? [misc] We should probably add __init__.py files to tests/ at some point... See #6059 and #5249
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 204607959..d7943c6e1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -176,7 +176,7 @@ deps =
-r{toxinidir}/misc/requirements/requirements-tests.txt
-r{toxinidir}/misc/requirements/requirements-mypy.txt
commands =
- {envpython} -m mypy qutebrowser tests {posargs}
+ {envpython} -m mypy qutebrowser {posargs}
[testenv:yamllint]
basepython = {env:PYTHON:python3}