Skip to content

Commit

Permalink
remove extra newline prior to total coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
craigahobbs@gmail.com authored and craigahobbs@gmail.com committed Apr 10, 2022
1 parent d4af98d commit 3db999b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
13 changes: 0 additions & 13 deletions src/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,6 @@ def test_coverage(self):
OK
Total coverage is 100.00%
''')
else: # pragma: no cover
Expand All @@ -1085,7 +1084,6 @@ def test_coverage(self):
OK
Total coverage is 100.00%
''')

Expand Down Expand Up @@ -1146,7 +1144,6 @@ def test_coverage_branch(self):
OK
Total coverage is 100.00%
''')
else: # pragma: no cover
Expand All @@ -1165,7 +1162,6 @@ def test_coverage_branch(self):
OK
Total coverage is 100.00%
''')

Expand Down Expand Up @@ -1201,7 +1197,6 @@ def test_coverage_no_tests(self):
OK
Total coverage is 100.00%
''')

Expand Down Expand Up @@ -1263,7 +1258,6 @@ def test_coverage_html(self):
OK
Total coverage is 100.00%
''')
else: # pragma: no cover
Expand All @@ -1282,7 +1276,6 @@ def test_coverage_html(self):
OK
Total coverage is 100.00%
''')

Expand Down Expand Up @@ -1344,7 +1337,6 @@ def test_coverage_xml(self):
OK
Total coverage is 100.00%
''')
else: # pragma: no cover
Expand All @@ -1363,7 +1355,6 @@ def test_coverage_xml(self):
OK
Total coverage is 100.00%
''')

Expand Down Expand Up @@ -1426,7 +1417,6 @@ def test_coverage_fail_under(self):
OK
Total coverage is 99.00%
''')
else: # pragma: no cover
Expand All @@ -1445,7 +1435,6 @@ def test_coverage_fail_under(self):
OK
Total coverage is 99.00%
''')

Expand Down Expand Up @@ -1517,7 +1506,6 @@ def test_coverage_other(self):
OK
Total coverage is 100.00%
''')
else: # pragma: no cover
Expand All @@ -1536,6 +1524,5 @@ def test_coverage_other(self):
OK
Total coverage is 100.00%
''')
1 change: 0 additions & 1 deletion src/unittest_parallel/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ def main(argv=None):
# Coverage report
print(file=sys.stderr)
percent_covered = cov.report(ignore_errors=True, file=sys.stderr)
print(file=sys.stderr)
print(f'Total coverage is {percent_covered:.2f}%', file=sys.stderr)

# HTML coverage report
Expand Down

0 comments on commit 3db999b

Please sign in to comment.