Commit 635d45d8 authored by Robert Bradshaw's avatar Robert Bradshaw

Skip broken directory by default.

parent f434632d
......@@ -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']:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment