From 635d45d8da093231c4747739c083f66b3a8f1a60 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Wed, 6 Apr 2011 00:16:07 -0700 Subject: [PATCH] Skip broken directory by default. --- runtests.py | 2 ++ 1 file changed, 2 insertions(+) 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']: -- 2.26.2