summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2017-01-24 23:39:28 -0800
committerSeth M Morton <seth.m.morton@gmail.com>2017-01-24 23:39:28 -0800
commit122ed8207f0826d8178226b2c2cadff0c0139675 (patch)
tree66c51b0e0d1ce1df57376bfc31d1d44d1f927101 /tox.ini
parentf05db70b30670b66a284b92ed0e29888a6e53fcf (diff)
downloadnatsort-122ed8207f0826d8178226b2c2cadff0c0139675.tar.gz
Added a "How it Works" section to docs.
This sections walks through many details of how natsort works, with examples. These examples are tested with doctest, but only on Python 3.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini18
1 files changed, 13 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index ae34b3c..9f56b56 100644
--- a/tox.ini
+++ b/tox.ini
@@ -10,7 +10,7 @@ envlist =
[testenv]
commands =
{envpython} -m pytest --doctest-modules natsort
- {envpython} -m pytest README.rst docs/source/intro.rst docs/source/examples.rst
+ {envpython} -m pytest README.rst docs/source/intro.rst docs/source/examples.rst docs/source/howitworks.rst
{envpython} -m pytest
deps =
pytest
@@ -26,6 +26,10 @@ deps =
argparse
[testenv:py27]
+commands =
+ {envpython} -m pytest --doctest-modules natsort
+ {envpython} -m pytest README.rst docs/source/intro.rst docs/source/examples.rst
+ {envpython} -m pytest
deps =
pytest
pytest-cache
@@ -34,18 +38,22 @@ deps =
mock
pathlib
-[testenv:py33]
+[testenv:pypy]
+commands =
+ {envpython} -m pytest --doctest-modules natsort
+ {envpython} -m pytest README.rst docs/source/intro.rst docs/source/examples.rst
+ {envpython} -m pytest
deps =
pytest
pytest-cache
- pytest-faulthandler
hypothesis
+ mock
pathlib
-[testenv:pypy]
+[testenv:py33]
deps =
pytest
pytest-cache
+ pytest-faulthandler
hypothesis
- mock
pathlib