PyTest - Markers
Given these tests:
What tests run with the command
@pytest.mark.slow def test_slow(): pass @pytest.mark.fast def test_fast(): pass
What tests run with the command
pytest -m 'slow or fast'?