[Zodb-checkins] SVN: zdaemon/trunk/ Finished tree reconfiguration.
Jim Fulton
jim at zope.com
Sun Oct 30 09:46:22 EST 2005
Log message for revision 39730:
Finished tree reconfiguration.
We can now run the zdaemon tests soley from zdaemon checkout.
Changed:
_U zdaemon/trunk/src/
A zdaemon/trunk/test.py
-=-
Property changes on: zdaemon/trunk/src
___________________________________________________________________
Name: svn:externals
+ ZConfig -r 39096 svn://svn.zope.org/repos/main/ZConfig/trunk/ZConfig
Added: zdaemon/trunk/test.py
===================================================================
--- zdaemon/trunk/test.py 2005-10-30 09:57:31 UTC (rev 39729)
+++ zdaemon/trunk/test.py 2005-10-30 14:46:22 UTC (rev 39730)
@@ -0,0 +1,34 @@
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Test script
+
+For help, use -h
+
+$Id$
+"""
+
+import os, sys
+
+src = os.path.join(os.path.split(sys.argv[0])[0], 'src')
+sys.path.insert(0, src) # put at beginning to avoid one in site_packages
+
+from zope.testing import testrunner
+
+defaults = [
+ '--path', src,
+ '--tests-pattern', '^tests$',
+ '--package', 'zdaemon'
+ ]
+
+sys.exit(testrunner.run(defaults))
Property changes on: zdaemon/trunk/test.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
More information about the Zodb-checkins
mailing list