[Zope3-checkins] SVN: zope.testing/trunk/ revert r110113 :
Godefroid Chapelle
gotcha at bubblenet.be
Tue Mar 23 08:46:03 EDT 2010
Log message for revision 110115:
revert r110113 :
zope.testing is WRONGLY considered to be only tests by z3c.dependecychecker
because it uses 'tests' and 'testing' namespaces to decide what code is part of tests
Changed:
U zope.testing/trunk/buildout.cfg
U zope.testing/trunk/setup.py
-=-
Modified: zope.testing/trunk/buildout.cfg
===================================================================
--- zope.testing/trunk/buildout.cfg 2010-03-23 12:11:19 UTC (rev 110114)
+++ zope.testing/trunk/buildout.cfg 2010-03-23 12:46:03 UTC (rev 110115)
@@ -1,13 +1,11 @@
[buildout]
develop = .
-parts = test z3c.dependencychecker
+parts = test
[test]
recipe = zc.recipe.testrunner
-eggs = zope.testing [test]
+eggs = zope.testing
-[z3c.dependencychecker]
-recipe = zc.recipe.egg:scripts
# The [test2X] sections below are to make testing with various Python versions
# easier. You'll need entries in your default.cfg that point to the location
@@ -23,12 +21,12 @@
[test24]
python = python2.4
recipe = zc.recipe.testrunner
-eggs = zope.testing [test]
+eggs = zope.testing
[test25]
python = python2.5
recipe = zc.recipe.testrunner
-eggs = zope.testing [test]
+eggs = zope.testing
[test26]
python = python2.6
Modified: zope.testing/trunk/setup.py
===================================================================
--- zope.testing/trunk/setup.py 2010-03-23 12:11:19 UTC (rev 110114)
+++ zope.testing/trunk/setup.py 2010-03-23 12:46:03 UTC (rev 110115)
@@ -28,12 +28,9 @@
extra = dict(
namespace_packages=['zope',],
install_requires = ['setuptools',
- ],
+ 'zope.exceptions',
+ 'zope.interface'],
entry_points = {'console_scripts': ['zope-testrunner = zope.testing.testrunner:run',]},
- extras_require=dict(
- test=['zope.exceptions',
- 'zope.interface',
- ]),
include_package_data = True,
zip_safe = False,
)
More information about the Zope3-Checkins
mailing list