summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini14
1 files changed, 14 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..12ed28e
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,14 @@
+[tox]
+envlist = py35,py26,py27,pypy,pypy3
+skipsdist = True
+
+[testenv]
+deps =
+ future
+commands = python -m unittest fastimport.tests.test_suite
+
+[testenv:py26]
+deps =
+ future
+ unittest2
+commands = python -m unittest2.__main__ fastimport.tests.test_suite \ No newline at end of file