summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-21 23:26:38 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-04-21 23:26:38 +0200
commita8a17ce1d575c26f35b71ef93038c746802cb777 (patch)
tree2f3f9a1c627c9ac84df116b1445f4c1d75deb228 /tox.ini
parent43a2852a6c78c6c17db6ce856b844e28f0bc6ef8 (diff)
downloadpaste-a8a17ce1d575c26f35b71ef93038c746802cb777.tar.gz
Add tox.ini to run tests with tox on Python 2.6, 2.7 and 3.4
* MANIFEST.in: add regen-docs & tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
1 files changed, 10 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..27fbcb8
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,10 @@
+[tox]
+envlist = py26,py27,py34
+
+[testenv]
+deps=
+ nose
+ six
+commands=
+ nosetests
+