test_ok2/bench/skip.py

11 lines
131 B
Python
Raw Normal View History

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