Coverage for pesummary/tests/conftest.py: 100.0%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-05-02 08:42 +0000

1# Licensed under an MIT style license -- see LICENSE.md 

2 

3"""Configuration for pytest. 

4""" 

5 

6MARKERS = { 

7 "executabletest": "mark test as testing an executable script", 

8 "workflowtest": "mark test as testing a workflow", 

9 "ligoskymaptest": "mark test as testing ligo.skymap integration", 

10} 

11 

12 

13def pytest_configure(config): 

14 for mark, desc in MARKERS.items(): 

15 config.addinivalue_line("markers", f"{mark}: {desc}")