From a8a17ce1d575c26f35b71ef93038c746802cb777 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 21 Apr 2015 23:26:38 +0200 Subject: Add tox.ini to run tests with tox on Python 2.6, 2.7 and 3.4 * MANIFEST.in: add regen-docs & tox.ini --- tox.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tox.ini (limited to 'tox.ini') 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 + -- cgit v1.2.1