[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/tests/test.py Added '{arch}' to the list of directories that are never traversed while

Steve Alexander steve at z3u.com
Thu Jul 29 12:03:25 EDT 2004


Log message for revision 26831:
  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/trunk/src/zope/app/tests/test.py


-=-
Modified: Zope3/trunk/src/zope/app/tests/test.py
===================================================================
--- Zope3/trunk/src/zope/app/tests/test.py	2004-07-29 14:20:49 UTC (rev 26830)
+++ Zope3/trunk/src/zope/app/tests/test.py	2004-07-29 16:03:25 UTC (rev 26831)
@@ -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