From: Robert Bradshaw Date: Wed, 6 Apr 2011 07:16:07 +0000 (-0700) Subject: Skip broken directory by default. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=635d45d8da093231c4747739c083f66b3a8f1a60;p=cython.git Skip broken directory by default. --- diff --git a/runtests.py b/runtests.py index 929bd0e9..f30f6b64 100644 --- a/runtests.py +++ b/runtests.py @@ -212,6 +212,8 @@ class TestBuilder(object): if os.path.isdir(path): if filename == 'pyregr' and not self.with_pyregr: continue + if filename == 'broken' and not self.test_bugs: + continue suite.addTest( self.handle_directory(path, filename)) if sys.platform not in ['win32']: