summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjason kirtland <jek@discorporate.us>2011-03-14 21:54:19 -0400
committerjason kirtland <jek@discorporate.us>2011-03-14 21:54:19 -0400
commitf7fa271e5a1e9ba433e50f51a80377d4ca8b13a0 (patch)
tree494ed1ca4ef3b8f4c1d307ce6270667fd144a421
parentd24501d9f717e930f059b38e3043790edaf35f0c (diff)
downloadblinker-f7fa271e5a1e9ba433e50f51a80377d4ca8b13a0.tar.gz
Added tox support.
-rw-r--r--.hgignore1
-rw-r--r--tox.ini7
2 files changed, 8 insertions, 0 deletions
diff --git a/.hgignore b/.hgignore
index 123b7d5..0ece97d 100644
--- a/.hgignore
+++ b/.hgignore
@@ -1,6 +1,7 @@
syntax: glob
.coverage
+.tox
nosetests3
bench
*.py?
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..72601df
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,7 @@
+[tox]
+envlist = py24,py25,py26,py27,py30,py31,py32,jython
+
+[testenv]
+deps=nose
+commands=nosetests
+