From 6f85a51a70496de17dc728b1428e34aeea985c8b Mon Sep 17 00:00:00 2001 From: Kai-Uwe Hermann Date: Tue, 5 Mar 2024 19:56:46 +0100 Subject: [PATCH] Skip all configs that start with "config-test-" in integration tests These are tested with different tests 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 6cac93ee4..55bff1ab8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -22,7 +22,7 @@ def pytest_configure(config): pytest.everest_configs['ids'] = [] for config_path in everest_configs: config_id = config_path.stem - if config_id == 'config-sil-gen-pm' or config_id == 'config-test-cpp-error-handling': + if config_id == 'config-sil-gen-pm' or config_id.startswith('config-test-cpp-error-handling'): # skip continue pytest.everest_configs['params'].append(config_path)