diff options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -17,7 +17,7 @@ basepython = pypy: pypy pypy3: pypy3 py2: python2.7 - py3: python3.5 + py3: python3.6 commands = nosetests --with-xunit --xunit-file=nosetests-{envname}.xml {posargs:} @@ -63,13 +63,15 @@ deps = virtualenv [testenv:lint] skip_install = true -basepython = python3.5 +basepython = python3.6 commands = - flake8 pyramid/ + flake8 src/pyramid tests setup.py + black --check --diff src/pyramid tests setup.py python setup.py check -r -s -m check-manifest deps = flake8 + black readme_renderer check-manifest @@ -113,7 +115,7 @@ extras = [testenv:coverage] skip_install = true -basepython = python3.5 +basepython = python3.6 commands = coverage erase coverage combine @@ -124,6 +126,14 @@ deps = setenv = COVERAGE_FILE=.coverage +[testenv:black] +skip_install = true +basepython = python3.6 +commands = + black src/pyramid tests setup.py +deps = + black + [testenv:build] skip_install = true basepython = python3.6 |
