From 0fb5dac5be2645075dd286a3ef94c3c66e26b7ef Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 15 Jul 2011 08:36:23 +0000 Subject: - Add a tox.ini for easier xplatform testing. --- CHANGES.txt | 2 ++ tox.ini | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 tox.ini 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 -- cgit v1.2.1