From 8ecd799baf2078fca26a6dc10e9f9f6e485d7a91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Mattrat?= Date: Fri, 15 Apr 2016 13:04:00 +0200 Subject: added a tox configuration file to simplify multiple versions testing --- tox.ini | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tox.ini 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 -- cgit v1.2.1