aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2013-03-01 13:45:12 -0500
committerWaylan Limberg <waylan@gmail.com>2013-03-01 13:45:12 -0500
commit6bc8b9611c85d321fd4fbad012525b7cd05a66d9 (patch)
tree6f897eec0b37273152ba05fc0c8e5a45342ff6b8 /tox.ini
parent26ebafb3b86b224c2acad29bf4d4314a3242189a (diff)
downloadmarkdown-6bc8b9611c85d321fd4fbad012525b7cd05a66d9.tar.gz
markdown-6bc8b9611c85d321fd4fbad012525b7cd05a66d9.tar.bz2
markdown-6bc8b9611c85d321fd4fbad012525b7cd05a66d9.zip
Switched testing to tox.
Also scrapped fabfile.py and replaced it with a much simpler makefile. Tox does most of the stuff that was in fabfile.py anyway. Now that everything runs in all supported python versions without using 2to3, we don't need to wait for tox to support it.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 6 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..bab27a0
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,6 @@
+[tox]
+envlist = py26, py27, py31, py32, py33
+
+[testenv]
+deps=nose
+commands = {envpython} {toxinidir}/run-tests.py {posargs}