Add qa env

Ignores tests with flake8 completely for now.
This commit is contained in:
Daniel Hahler
2018-07-15 23:25:08 +02:00
parent 3bdb941daa
commit 28ecbd6b6a
3 changed files with 9 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36
envlist = py27, py34, py35, py36, qa
[testenv]
extras = testing
# Overwrite the parso version (only used sometimes).
@@ -46,3 +46,7 @@ commands =
commands =
{envpython} -c "import os; a='{envtmpdir}'; os.path.exists(a) or os.makedirs(a)"
{envpython} sith.py --record {envtmpdir}/record.json random {posargs:jedi}
[testenv:qa]
commands = flake8 {posargs:jedi}
deps =
extras = qa