From cf606a9ead49742f7d7fe56fc7fb2b9be77ed603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Mon, 25 Nov 2024 18:16:12 +0100 Subject: [PATCH] Ignore test artifacts in .libs Some tests may leave artifacts in the .libs directory. Ignore this directory when detecting expected artifacts. --- bin/tests/system/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/tests/system/conftest.py b/bin/tests/system/conftest.py index 919a188a96..095c8e7222 100644 --- a/bin/tests/system/conftest.py +++ b/bin/tests/system/conftest.py @@ -309,6 +309,7 @@ def logger(request, system_test_name): @pytest.fixture(scope="module") def expected_artifacts(request): common_artifacts = [ + ".libs/*", # possible build artifacts, see GL #5055 "ns*/named.run", "ns*/named.run.prev", "ns*/named.conf",