summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--tox.ini16
2 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index aad598b9a..31b04f664 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,9 @@
*.txt.py
*~
.coverage
+.tox/
+nosetests.xml
+pyramid/coverage.xml
tutorial.db
env26/
env26-debug/
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 000000000..d1c3c81a5
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,16 @@
+[tox]
+envlist =
+ py24,py25,py26,py27,jython,pypy
+[testenv]
+commands =
+ python setup.py nosetests --with-xunit --with-xcoverage
+# python template_tests.py
+deps = Sphinx
+ WebTest
+ repoze.sphinx.autointerface
+ virtualenv
+ nose
+ coverage==3.3
+ nosexcover
+
+# coverage <3.4 required by nosexcover