[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/testing/test.py
	added Darcs meta-directory to the list of directories skipped when
    Fred L. Drake, Jr. 
    fdrake at gmail.com
       
    Thu Mar 17 02:58:52 EST 2005
    
    
  
Log message for revision 29516:
  added Darcs meta-directory to the list of directories skipped when
  searching for tests
  
Changed:
  U   Zope3/trunk/src/zope/app/testing/test.py
-=-
Modified: Zope3/trunk/src/zope/app/testing/test.py
===================================================================
--- Zope3/trunk/src/zope/app/testing/test.py	2005-03-16 23:59:24 UTC (rev 29515)
+++ Zope3/trunk/src/zope/app/testing/test.py	2005-03-17 07:58:52 UTC (rev 29516)
@@ -581,7 +581,7 @@
         names = os.listdir(top)
     except os.error:
         return
-    exceptions = ('.', '..', '{arch}', '.arch-ids')
+    exceptions = ('.', '..', '{arch}', '.arch-ids', '_darcs')
     names = [name for name in names
              if name not in exceptions
              if not name.startswith(',,')]
    
    
More information about the Zope3-Checkins
mailing list