Skip to content

Commit 9f85b08

Browse files
committed
tests: print kcov coverage to stdout
* for (temporary) debugging purposes only Signed-off-by: Diana Popa <[email protected]>
1 parent 25441e6 commit 9f85b08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/build/test_coverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ def test_coverage(testsession_tmp_path):
5555

5656
with open(testsession_tmp_path + COVERAGE_FILE) as cov_output:
5757
coverage = float(re.findall(COVERAGE_REGEX, cov_output.read())[0])
58-
58+
print("Coverage is: " + str(coverage))
5959
assert coverage >= COVERAGE_TARGET_PCT

0 commit comments

Comments
 (0)