PyTest - Markers
Given the following
What happens if you run pytest with a test marked
pytest.ini content:[markers] slow = marks tests as slow fast = marks tests as fast
What happens if you run pytest with a test marked
@pytest.mark.slow?