[Zope3-checkins] SVN: zope.testing/branches/ctheune-cleanup/setup.py update setup.py to reflect moved doctest files

Christian Theune ct at gocept.com
Mon May 5 14:38:07 EDT 2008


Log message for revision 86458:
  update setup.py to reflect moved doctest files
  

Changed:
  U   zope.testing/branches/ctheune-cleanup/setup.py

-=-
Modified: zope.testing/branches/ctheune-cleanup/setup.py
===================================================================
--- zope.testing/branches/ctheune-cleanup/setup.py	2008-05-05 15:28:29 UTC (rev 86457)
+++ zope.testing/branches/ctheune-cleanup/setup.py	2008-05-05 18:38:06 UTC (rev 86458)
@@ -32,33 +32,38 @@
     extra = {}
 
 chapters = '\n'.join([
-    open(os.path.join('src', 'zope', 'testing', name)).read()
+    open(os.path.join('src', 'zope', 'testing', 'testrunner', name)).read()
     for name in (
-    'testrunner.txt',
-     'testrunner-simple.txt',
-    'testrunner-layers-api.txt',
-    'testrunner-layers.txt',
-    'testrunner-arguments.txt',
-    'testrunner-verbose.txt',
-    'testrunner-test-selection.txt',
-    'testrunner-progress.txt',
+        'testrunner.txt',
+        'testrunner-simple.txt',
+        'testrunner-layers-api.txt',
+        'testrunner-layers.txt',
+        'testrunner-arguments.txt',
+        'testrunner-verbose.txt',
+        'testrunner-test-selection.txt',
+        'testrunner-progress.txt',
 
-# The following seems to cause weird unicode in the output: :(
-##     'testrunner-errors.txt',
-    
-    'testrunner-debugging.txt',
-    'testrunner-layers-ntd.txt',
-    'testrunner-coverage.txt',
-    'testrunner-profiling.txt',
-    'testrunner-wo-source.txt',
-    'testrunner-repeat.txt',
-    'testrunner-gc.txt',
-    'testrunner-leaks.txt',
-    'testrunner-knit.txt',
-    'formparser.txt',
-    'setupstack.txt',
+        # The following seems to cause weird unicode in the output: :(
+        ##     'testrunner-errors.txt',
+
+        'testrunner-debugging.txt',
+        'testrunner-layers-ntd.txt',
+        'testrunner-coverage.txt',
+        'testrunner-profiling.txt',
+        'testrunner-wo-source.txt',
+        'testrunner-repeat.txt',
+        'testrunner-gc.txt',
+        'testrunner-leaks.txt',
+        'testrunner-knit.txt',
     )])
 
+chapters += '\n'.join([
+    open(os.path.join('src', 'zope', 'testing', name)).read()
+    for name in (
+        'formparser.txt',
+        'setupstack.txt',
+    )])
+
 long_description=(
     open('README.txt').read()
     + '\n' +



More information about the Zope3-Checkins mailing list