test_ok2/bench/skip.py

12 lines
132 B
Python
Raw Normal View History

import pytest
SKIP = True
2018-05-23 22:48:46 +08:00
@pytest.mark.parametrize("x", xrange(5000))
def test_foo(x):
if SKIP:
pytest.skip("heh")