summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-06-24 14:39:00 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-06-24 15:01:16 +0200
commit0e2db8eadc752d9502fba6d9697c67ca91550997 (patch)
tree5a6dd3c12742f1d41c5052f08b002483318f4822 /tox.ini
parenta04e7fe0df6f52146b7fa95a9fbf71b82bf0967a (diff)
downloadqutebrowser-0e2db8eadc752d9502fba6d9697c67ca91550997.tar.gz
qutebrowser-0e2db8eadc752d9502fba6d9697c67ca91550997.zip
Add "tox -e mypy-diff"
Not done by default with "tox -e mypy" because it disables mypy's caching, causing its runtime to go from <1s to ~15s: https://github.com/python/mypy/issues/9041 See #1456
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini9
1 files changed, 9 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 4e16742cc..aafa19331 100644
--- a/tox.ini
+++ b/tox.ini
@@ -200,6 +200,15 @@ deps =
commands =
{envpython} -m mypy qutebrowser tests {posargs}
+[testenv:mypy-diff]
+basepython = {env:PYTHON:python3}
+pip_version = pip
+passenv = {[testenv:mypy]passenv}
+deps = {[testenv:mypy]deps}
+commands =
+ {envpython} -m mypy --cobertura-xml-report {envtmpdir} qutebrowser tests {posargs}
+ {envdir}/bin/diff-cover --fail-under=100 --compare-branch={env:DIFF_BRANCH:origin/{env:GITHUB_BASE_REF:master}} {envtmpdir}/cobertura.xml
+
[testenv:sphinx]
basepython = {env:PYTHON:python3}
pip_version = pip