summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFélix Mattrat <mattr.felix@gmail.com>2016-04-15 13:04:00 +0200
committerFélix Mattrat <mattr.felix@gmail.com>2016-04-15 13:04:00 +0200
commit8ecd799baf2078fca26a6dc10e9f9f6e485d7a91 (patch)
tree8283836218bbd2aa5f6da1f5e3fde112768df0dd
parent9c64032e4ab2c0a5b031641cca9bfc0459c15a97 (diff)
downloadpython-fastimport-git-8ecd799baf2078fca26a6dc10e9f9f6e485d7a91.tar.gz
added a tox configuration file to simplify multiple versions testing
-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