[Zope-Checkins] CVS: Zope3 - test.py:1.9

Jeremy Hylton jeremy@zope.com
Wed, 10 Jul 2002 18:58:13 -0400


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv25298

Modified Files:
	test.py 
Log Message:
Don't need to ignore ZopeLegacy any more.  It's gone.


=== Zope3/test.py 1.8 => 1.9 ===
     def visit(self, rx, dir, files):
         if dir[-5:] != "tests":
             return
-        # ignore tests in ZopeLegacy directory
-        if dir.startswith(join('lib','python','ZopeLegacy')):
-            return
         # ignore tests that aren't in packages
         if not "__init__.py" in files:
             if not files or files == ['CVS']: