[Checkins] SVN: zope.testrunner/trunk/ Oops, I committed a tox.ini that does nothing. Fix it.

Marius Gedminas cvs-admin at zope.org
Fri Feb 8 00:00:58 UTC 2013


Log message for revision 129202:
  Oops, I committed a tox.ini that does nothing.  Fix it.
  
  Also mention we support PyPy.
  
  

Changed:
  U   zope.testrunner/trunk/setup.py
  U   zope.testrunner/trunk/tox.ini

-=-
Modified: zope.testrunner/trunk/setup.py
===================================================================
--- zope.testrunner/trunk/setup.py	2013-02-07 23:18:38 UTC (rev 129201)
+++ zope.testrunner/trunk/setup.py	2013-02-08 00:00:57 UTC (rev 129202)
@@ -182,6 +182,8 @@
         "Programming Language :: Python :: 3.1",
         "Programming Language :: Python :: 3.2",
         "Programming Language :: Python :: 3.3",
+        'Programming Language :: Python :: Implementation :: CPython',
+        'Programming Language :: Python :: Implementation :: PyPy',
         "Topic :: Software Development :: Libraries :: Python Modules",
         "Topic :: Software Development :: Testing",
         ],

Modified: zope.testrunner/trunk/tox.ini
===================================================================
--- zope.testrunner/trunk/tox.ini	2013-02-07 23:18:38 UTC (rev 129201)
+++ zope.testrunner/trunk/tox.ini	2013-02-08 00:00:57 UTC (rev 129202)
@@ -2,18 +2,18 @@
 envlist =
     py26,py27,py31,py32,py33,pypy
 
-[toxenv]
+[testenv]
 deps =
     zope.testing
 commands =
     python setup.py test -q
 
-[toxenv:py26]
+[testenv:py26]
 deps =
-    {[toxenv]deps}
+    {[testenv]deps}
     python-subunit
 
-[toxenv:py27]
+[testenv:py27]
 deps =
-    {[toxenv]deps}
+    {[testenv]deps}
     python-subunit



More information about the checkins mailing list