fix(ci): close capability races and green audit
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m51s
CI / required (push) Failing after 28m9s

This commit is contained in:
2026-08-13 09:43:42 +00:00
parent 6f67568f47
commit 1ea44e5e42
14 changed files with 224 additions and 229 deletions

View File

@@ -4,6 +4,21 @@ from audit_red_suite import parse_log
class AuditRedSuiteTests(unittest.TestCase):
def test_parses_result_split_by_captured_output(self) -> None:
audit = parse_log(
"""
test noisy ... diagnostic output
more diagnostic output
ok
test expected_panic ...
thread 'expected_panic' panicked at test.rs:1:1:
expected panic
ok
test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
"""
)
self.assertEqual(audit.passed_names, ("noisy", "expected_panic"))
def test_associates_standardized_boundaries_with_failed_tests(self) -> None:
audit = parse_log(
"""