diff options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -1,9 +1,8 @@ [tox] envlist = - py27,py34,py35,py36,py37,pypy, - docs,pep8, - {py2,py3}-cover,coverage, -skip_missing_interpreters = True + lint, + py27,py34,py35,py36,pypy, + docs,{py2,py3}-cover,coverage, [testenv] # Most of these are defaults but if you specify any you can't fall back @@ -52,14 +51,20 @@ commands = python pyramid/scaffolds/tests.py deps = virtualenv -[testenv:pep8] +[testenv:lint] +skip_install = True basepython = python3.5 commands = flake8 pyramid/ + python setup.py check -r -s -m + check-manifest deps = flake8 + readme_renderer + check-manifest [testenv:docs] +skip_install = True basepython = python3.5 whitelist_externals = make commands = @@ -67,6 +72,7 @@ commands = make -C docs doctest html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E" [testenv:pdf] +skip_install = True basepython = python3.5 whitelist_externals = make commands = @@ -93,6 +99,7 @@ setenv = COVERAGE_FILE=.coverage.py3 [testenv:coverage] +skip_install = True basepython = python3.5 commands = coverage erase |
