Files
pytest2/bench/skip.py
2019-06-03 12:08:01 -03:00

10 lines
129 B
Python

import pytest
SKIP = True
@pytest.mark.parametrize("x", range(5000))
def test_foo(x):
if SKIP:
pytest.skip("heh")