From 189b7c009caaec9d1958e7b4432a42c5a059024f Mon Sep 17 00:00:00 2001 From: Kai-Uwe Hermann Date: Thu, 7 Dec 2023 23:23:13 +0100 Subject: [PATCH] Clarify why config-sil-gen-pm is skipped initially (needs its own test) Signed-off-by: Kai-Uwe Hermann --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 92b51143c..0d4dd4550 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,7 +21,7 @@ def pytest_configure(config): for config_path in everest_configs: config_id = config_path.stem if config_id == 'config-sil-gen-pm': - # skip + # skip, needs to have a dedicated test continue pytest.everest_configs['params'].append(config_path) pytest.everest_configs['ids'].append(config_id)