From 6dd9ef4032e291ccf8cbefa561023e0db9b0f48a Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 6 Nov 2024 10:20:32 -0500 Subject: [PATCH] Backport No effects were observed on Make-managed files. Signed-off-by: Alex Nelson --- tests/test_exemplar_coverage.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_exemplar_coverage.py b/tests/test_exemplar_coverage.py index a6ce568..5daf277 100644 --- a/tests/test_exemplar_coverage.py +++ b/tests/test_exemplar_coverage.py @@ -41,6 +41,9 @@ def test_exemplar_coverage() -> None: combined_graph = Graph() for filepath in (top_srcdir / "ontology").iterdir(): + if filepath.name.startswith("_"): + # Skip temporary build artifacts. + continue if filepath.name.startswith("."): # Skip quality control test artifacts. continue