Skip to content

Commit

Permalink
returned to 3.6 because semaphore doesn't yet support 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit committed May 21, 2019
1 parent f3115f3 commit ad33ea2
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
envlist =
black
py27
py37
py36
doctest
py27-regression
py37-regression
py36-regression
py27-fuzz
py37-fuzz
py36-fuzz
pylint
pydocstyle
flake8
Expand All @@ -33,7 +33,7 @@ deps =
commands = nosetests []

[testenv:doctest]
basepython = python3.7
basepython = python3.6
setenv =
NOSE_WITH_COVERAGE=0
NOSE_WITH_DOCTEST=1
Expand All @@ -53,7 +53,7 @@ commands = nosetests {toxinidir}/tests/regression --processes=-1 \
deps = {[testenv:regression]deps}
commands = {[testenv:regression]commands}

[testenv:py37-regression]
[testenv:py36-regression]
deps = {[testenv:regression]deps}
commands = {[testenv:regression]commands}

Expand All @@ -66,32 +66,32 @@ commands = nosetests {toxinidir}/tests/fuzz --processes=-1 \
deps = {[testenv:fuzz]deps}
commands = {[testenv:fuzz]commands}

[testenv:py37-fuzz]
[testenv:py36-fuzz]
deps = {[testenv:fuzz]deps}
commands = {[testenv:fuzz]commands}


[testenv:pylint]
basepython = python3.7
basepython = python3.6
skip_install = true
deps = pylint
commands = {toxinidir}/helpers/call_and_write_log.py \
"pylint --rcfile=setup.cfg abydos" 0

[testenv:pydocstyle]
basepython = python3.7
basepython = python3.6
skip_install = true
deps = pydocstyle
commands = {toxinidir}/helpers/call_and_write_log.py "pydocstyle --count ." 0

[testenv:pycodestyle]
basepython = python3.7
basepython = python3.6
skip_install = true
deps = pycodestyle
commands = {toxinidir}/helpers/call_and_write_log.py "pycodestyle ." 0

[testenv:flake8]
basepython = python3.7
basepython = python3.6
skip_install = true
deps =
flake8
Expand Down Expand Up @@ -122,14 +122,14 @@ commands = {toxinidir}/helpers/call_and_write_log.py \
"flake8 {toxinidir} --htmldir={toxinidir}/flake8" 0

[testenv:doc8]
basepython = python3.7
basepython = python3.6
skip_install = true
deps = doc8
commands = {toxinidir}/helpers/call_and_write_log.py "doc8 {toxinidir}" 0

[testenv:docs]
changedir = docs
basepython = python3.7
basepython = python3.6
whitelist_externals=make
deps =
sphinx
Expand All @@ -147,20 +147,20 @@ commands =
sphinx-build -j 8 -b coverage -d {envtmpdir}/doctrees . _build/coverage

[testenv:badges]
basepython = python3.7
basepython = python3.6
skip_install = true
commands = python {toxinidir}/badge_update.py

[testenv:black]
changedir = {toxinidir}
basepython = python3.7
basepython = python3.6
skip_install = true
deps = black
commands = black .

[testenv:dist]
changedir = {toxinidir}
basepython = python3.7
basepython = python3.6
skip_install = true
commands =
python setup.py sdist
Expand Down

0 comments on commit ad33ea2

Please sign in to comment.