[Zope3-checkins] SVN: zope.testing/trunk/ Add zope-testrunner console_scripts entry point. This exposes a
Brian Sutherland
jinty at web.de
Mon Jun 15 15:52:24 EDT 2009
Log message for revision 101026:
Add zope-testrunner console_scripts entry point. This exposes a
zope-testrunner binary with default installs allowing the testrunner to be
run from the command line.
http://mail.zope.org/pipermail/zope-dev/2009-June/036970.html
Changed:
U zope.testing/trunk/CHANGES.txt
U zope.testing/trunk/setup.py
-=-
Modified: zope.testing/trunk/CHANGES.txt
===================================================================
--- zope.testing/trunk/CHANGES.txt 2009-06-15 18:19:40 UTC (rev 101025)
+++ zope.testing/trunk/CHANGES.txt 2009-06-15 19:52:19 UTC (rev 101026)
@@ -4,9 +4,10 @@
3.7.6 (unreleased)
==================
-- Nothing changed yet.
+- Add zope-testrunner console_scripts entry point. This exposes a
+ zope-testrunner binary with default installs allowing the testrunner to be
+ run from the command line.
-
3.7.5 (2009-06-08)
==================
Modified: zope.testing/trunk/setup.py
===================================================================
--- zope.testing/trunk/setup.py 2009-06-15 18:19:40 UTC (rev 101025)
+++ zope.testing/trunk/setup.py 2009-06-15 19:52:19 UTC (rev 101026)
@@ -25,6 +25,7 @@
install_requires = ['setuptools',
'zope.interface'],
extras_require={'zope_tracebacks': 'zope.exceptions'},
+ entry_points = {'console_scripts': ['zope-testrunner = zope.testing.testrunner:run',]},
include_package_data = True,
zip_safe = False,
)
More information about the Zope3-Checkins
mailing list