summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2019-11-13 11:51:06 -0800
committerSeth Morton <seth.m.morton@gmail.com>2019-11-13 11:51:06 -0800
commit7c9d01545a9cfd9ac3c0485183cb6ed9ec956837 (patch)
tree17a5055dda6f4ffe8da921f83fc2e59bec2486cc /tox.ini
parent60b86c3b6ee63112da3cc866982278b08b86a3ee (diff)
downloadnatsort-7c9d01545a9cfd9ac3c0485183cb6ed9ec956837.tar.gz
Re-remove Python 2.7 support.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index bec5a24..3d0ce33 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,7 @@
[tox]
envlist =
- flake8, py27, py35, py36, py37, py38
+ flake8, py35, py36, py37, py38
# Other valid evironments are:
# docs
# release
@@ -23,8 +23,8 @@ extras =
{env:WITH_EXTRAS:}
commands =
# Doctests
- py36: {envpython} -m doctest -o IGNORE_EXCEPTION_DETAIL docs/howitworks.rst
- !py27: pytest README.rst docs/examples.rst
+ {envpython} -m doctest -o IGNORE_EXCEPTION_DETAIL docs/howitworks.rst
+ pytest README.rst docs/examples.rst
pytest --doctest-modules {envsitepackagesdir}/natsort
# Full test suite. Allow the user to pass command-line objects.
pytest --hypothesis-profile=slow-tests --tb=short --cov {envsitepackagesdir}/natsort --cov-report term-missing {posargs:}