Skip to content

Commit d6b9392

Browse files
committed
Fixed an if-statement which incorrectly disabled coverage testing when the parallel testing count was set to 1.
- Legacy-Id: 13231
1 parent 1e98833 commit d6b9392

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def __init__(self, skip_coverage=False, save_version_coverage=None, **kwargs):
365365
self.root_dir = os.path.dirname(settings.BASE_DIR)
366366
self.coverage_file = os.path.join(self.root_dir, settings.TEST_COVERAGE_MASTER_FILE)
367367
super(IetfTestRunner, self).__init__(**kwargs)
368-
if self.parallel:
368+
if self.parallel > 1:
369369
self.check_coverage = False
370370

371371
def setup_test_environment(self, **kwargs):

0 commit comments

Comments
 (0)