Michael Merickel
2018-10-10 851c368e3c158e264358de10446f5b5de240e534
tox.ini
@@ -17,7 +17,7 @@
    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 @@
[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 @@
[testenv:coverage]
skip_install = true
basepython = python3.5
basepython = python3.6
commands =
    coverage erase
    coverage combine
@@ -124,6 +126,14 @@
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