[Checkins] SVN: zope.exceptions/branches/tseaver-no_2to3/ Add support for continuous integration using ``tox`` and ``jenkins``.

Tres Seaver cvs-admin at zope.org
Fri Apr 6 19:37:20 UTC 2012


Log message for revision 125033:
  Add support for continuous integration using ``tox`` and ``jenkins``.
  

Changed:
  U   zope.exceptions/branches/tseaver-no_2to3/CHANGES.txt
  A   zope.exceptions/branches/tseaver-no_2to3/tox.ini

-=-
Modified: zope.exceptions/branches/tseaver-no_2to3/CHANGES.txt
===================================================================
--- zope.exceptions/branches/tseaver-no_2to3/CHANGES.txt	2012-04-06 19:37:12 UTC (rev 125032)
+++ zope.exceptions/branches/tseaver-no_2to3/CHANGES.txt	2012-04-06 19:37:16 UTC (rev 125033)
@@ -5,6 +5,8 @@
 4.0.0 (unreleased)
 ------------------
 
+- Added support for continuous integration using ``tox`` and ``jenkins``.
+
 - Removed use of '2to3' and associated fixers when installing under Py3k.
   The code is now in a "compatible subset" which supports Python 2.6, 2.7,
   and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language

Added: zope.exceptions/branches/tseaver-no_2to3/tox.ini
===================================================================
--- zope.exceptions/branches/tseaver-no_2to3/tox.ini	                        (rev 0)
+++ zope.exceptions/branches/tseaver-no_2to3/tox.ini	2012-04-06 19:37:16 UTC (rev 125033)
@@ -0,0 +1,26 @@
+[tox]
+envlist = 
+# Jython support pending 2.7 support, due 2012-07-15 or so.  See:
+# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
+#   py26,py27,py32,jython,pypy,coverage
+    py26,py27,py32,pypy,coverage
+
+[testenv]
+commands = 
+    python setup.py test -q
+deps = zope.interface
+
+[testenv:jython]
+commands = 
+   jython setup.py test -q
+
+[testenv:coverage]
+basepython =
+    python2.6
+commands = 
+    nosetests --with-xunit --with-xcoverage
+deps =
+    zope.interface
+    nose
+    coverage
+    nosexcover



More information about the checkins mailing list