Skip to content

Commit

Permalink
Skip all configs that start with "config-test-" in integration tests
Browse files Browse the repository at this point in the history
These are tested with different tests

Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass committed Mar 5, 2024
1 parent 59d4d6b commit 6f85a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6f85a51

Please sign in to comment.