Bowe Strickland
2018-10-27 323fa95deea50f49c119728fc2eeacb9e0c51241
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:}
@@ -28,48 +28,50 @@
[testenv:py27-scaffolds]
basepython = python2.7
commands =
    python pyramid/scaffolds/tests.py
    python src/pyramid/scaffolds/tests.py
deps = virtualenv
[testenv:py34-scaffolds]
basepython = python3.4
commands =
    python pyramid/scaffolds/tests.py
    python src/pyramid/scaffolds/tests.py
deps = virtualenv
[testenv:py35-scaffolds]
basepython = python3.5
commands =
    python pyramid/scaffolds/tests.py
    python src/pyramid/scaffolds/tests.py
deps = virtualenv
[testenv:py36-scaffolds]
basepython = python3.6
commands =
    python pyramid/scaffolds/tests.py
    python src/pyramid/scaffolds/tests.py
deps = virtualenv
[testenv:py37-scaffolds]
basepython = python3.7
commands =
    python pyramid/scaffolds/tests.py
    python src/pyramid/scaffolds/tests.py
deps = virtualenv
[testenv:pypy-scaffolds]
basepython = pypy
commands =
    python pyramid/scaffolds/tests.py
    python src/pyramid/scaffolds/tests.py
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 @@
[testenv:coverage]
skip_install = true
basepython = python3.5
basepython = python3.6
commands =
    coverage erase
    coverage combine
@@ -123,6 +125,14 @@
    coverage
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
@@ -134,7 +144,7 @@
    # build sdist
    python setup.py sdist --dist-dir {toxinidir}/dist
    # build wheel from sdist
    pip wheel -v --no-deps --no-index --wheel-dir {toxinidir}/dist --find-links {toxinidir}/dist pyramid
    pip wheel -v --no-deps --no-index --no-build-isolation --wheel-dir {toxinidir}/dist --find-links {toxinidir}/dist pyramid
deps =
    setuptools