PyTest - Markers
Given these tests marked in pytest:
What tests run with
@pytest.mark.fast def test_a(): pass @pytest.mark.slow def test_b(): pass @pytest.mark.fast def test_c(): pass
What tests run with
pytest -m fast?