[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/src/zope/app/tests/test.py Merge revision 26831 from the Zope 3 trunk:

Fred L. Drake, Jr. fdrake at gmail.com
Thu Jul 29 14:20:16 EDT 2004


Log message for revision 26833:
  Merge revision 26831 from the Zope 3 trunk:
  
  Added {arch} to the list of directories that are never traversed while
  looking for tests.
  
  This is essential when using the test-runner in a project that uses the
  tla source-code management system.
  


Changed:
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/tests/test.py


-=-
Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/tests/test.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/tests/test.py	2004-07-29 17:13:40 UTC (rev 26832)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/tests/test.py	2004-07-29 18:20:16 UTC (rev 26833)
@@ -585,7 +585,7 @@
     except os.error:
         return
     func(arg, top, names)
-    exceptions = ('.', '..')
+    exceptions = ('.', '..', '{arch}')
     for name in names:
         if name not in exceptions:
             name = os.path.join(top, name)



More information about the Zope3-Checkins mailing list