summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-07-15 08:36:23 +0000
committerChris McDonough <chrism@plope.com>2011-07-15 08:36:23 +0000
commit0fb5dac5be2645075dd286a3ef94c3c66e26b7ef (patch)
tree2cbb00dfd02c5de37d3fdcda66df2362dbe3dd9a
parent76fe333069becd42ab62fcb3a14eba921dfde474 (diff)
downloadzope-interface-0fb5dac5be2645075dd286a3ef94c3c66e26b7ef.tar.gz
- Add a tox.ini for easier xplatform testing.
-rw-r--r--CHANGES.txt2
-rw-r--r--tox.ini11
2 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index e0d9756..ac69493 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,8 @@
- LP #804832: Under PyPy, ``zope.interface`` should not build its C
extension. Also, prevent attempting to build it under Jython.
+- Add a tox.ini for easier xplatform testing.
+
3.6.4 (2011-07-04)
------------------
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..eb62b24
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,11 @@
+[tox]
+envlist =
+ py24,py25,py26,py27,py32,jython,pypy
+
+[testenv]
+commands =
+ python setup.py test -q
+
+[testenv:jython]
+commands =
+ jython setup.py test -q