VP
Подскажите, плиз по pytest
Можно ли как-то skip-нуть или xfail-нуть параметризованный тест в зависимости от параметра?
Alternatively, it is also possible to skip imperatively during test execution or setup by calling the pytest.skip(reason) function:
def test_function():
if not valid_config():
pytest.skip("unsupported configuration")