Skip to content

Commit bdb3bc4

Browse files
author
Jonathan Woollett-Light
committed
fix: Update code coverage
Updates code coverage. New `Debug` implementations and moving code from traits to structs has produced more code, resulting in a coverage drop. Signed-off-by: Jonathan Woollett-Light <[email protected]>
1 parent 22aab36 commit bdb3bc4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/integration_tests/build/test_coverage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ def is_on_skylake():
2525
# Checkout the cpuid crate. In the future other
2626
# differences may appear.
2727
if utils.is_io_uring_supported():
28-
COVERAGE_DICT = {"Intel": 84.09, "AMD": 83.34, "ARM": 83.18}
28+
COVERAGE_DICT = {"Intel": 82.43, "AMD": 81.68, "ARM": 80.92}
2929
else:
30-
COVERAGE_DICT = {"Intel": 81.39, "AMD": 80.55, "ARM": 80.19}
30+
COVERAGE_DICT = {"Intel": 79.78, "AMD": 78.94, "ARM": 78.06}
3131

3232
PROC_MODEL = proc.proc_type()
3333

tests/integration_tests/build/test_unittests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# run coverage with the `gnu` toolchains and run unit tests with the `musl` toolchains.
1313
TARGET = "{}-unknown-linux-musl".format(MACHINE)
1414

15-
15+
@pytest.mark.timeout(600)
1616
def test_unittests(test_fc_session_root_path):
1717
"""
1818
Run unit and doc tests for all supported targets.

0 commit comments

Comments
 (0)