Skip Twisted install in tox for static checkers.

This commit is contained in:
Adi Roiban 2018-03-20 14:48:45 +00:00
parent 9768a623b6
commit a9f8269f76
1 changed files with 16 additions and 11 deletions

27
tox.ini
View File

@ -136,36 +136,41 @@ commands =
[testenv:twistedchecker]
basepython=python3.6
[testenv:pyflakes]
basepython=python2.7
# Static checkers don't need to install the source code.
skip_install = true
[testenv:pyflakes3]
basepython=python3.6
# Static checkers don't need to install the source code.
skip_install = true
[testenv:apidocs]
basepython=python2.7
[testenv:newsfragment]
basepython=python2.7
skip_install = true
[testenv:manifest-checker]
basepython=python2.7
# Static checkers don't need to install the source code.
[testenv:pyflakes3]
skip_install = true
[testenv:pyflakes]
skip_install = true
[testenv:pycodestyle]
skip_install = true
[testenv:pycodestylediff]
skip_install = true
[testenv:newsfragment]
basepython=python2.7
skip_install = true
[testenv:pycodestylediff]
basepython=python2.7
skip_install = true
# Sphinx documentation also don't need the code installed.
[testenv:narrativedocs]
basepython=python2.7
skip_install = true
# TwistedChecker needs to be 3.5
[testenv:txchecker-travis-required]
basepython=python3.5