mailr5947 - /1.3/scons/manuals.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on April 22, 2008 - 00:45:
Author: bugman
Date: Tue Apr 22 00:13:52 2008
New Revision: 5947

URL: http://svn.gna.org/viewcvs/relax?rev=5947&view=rev
Log:
Modified the API documentation construction so that most of the test suite is 
not present.


Modified:
    1.3/scons/manuals.py

Modified: 1.3/scons/manuals.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/scons/manuals.py?rev=5947&r1=5946&r2=5947&view=diff
==============================================================================
--- 1.3/scons/manuals.py (original)
+++ 1.3/scons/manuals.py Tue Apr 22 00:13:52 2008
@@ -106,10 +106,14 @@
                'prompt/*.py',
                'specific_fns/*.py',
                'test_suite/*.py',
-               'test_suite/*/*.py',
-               'test_suite/unit_tests/_*/*.py',
+               'test_suite/system_tests/__init__.py',
+               'test_suite/unit_tests/unit_test_runner.py',
                'sconstruct',
                'scons/*.py']
+
+    # exclude
+    #   The list of objects to exclude.
+    exclude = ['system_tests*']
 
     # output
     #   The type of output that should be generated.  Should be one
@@ -257,6 +261,10 @@
         epydoc_cmd = epydoc_cmd + ' --show-sourcecode'
     else:
         epydoc_cmd = epydoc_cmd + ' --no-sourcecode'
+
+    # Excluded modules.
+    for name in exclude:
+        epydoc_cmd = epydoc_cmd + ' --exclude=' + name
 
     # Modules.
     for module in modules:




Related Messages


Powered by MHonArc, Updated Wed Apr 23 00:40:32 2008