From 9d78e87b4954c94a23e9e40c9fbb549554642499 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 3 Oct 2024 18:18:33 +0200 Subject: [PATCH] Missing NotImplementedError in abstract method Signed-off-by: Gilles Peskine --- tests/scripts/analyze_outcomes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index 8123ea1ef5..decc33496a 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -135,6 +135,7 @@ class Task: def section_name(self) -> str: """The section name to use in results.""" + raise NotImplementedError def ignored_tests(self, test_suite: str) -> typing.Iterator[IgnoreEntry]: """Generate the ignore list for the specified test suite."""