12 lines
158 B
Python
12 lines
158 B
Python
from six.moves import range
|
|
|
|
import pytest
|
|
|
|
SKIP = True
|
|
|
|
|
|
@pytest.mark.parametrize("x", range(5000))
|
|
def test_foo(x):
|
|
if SKIP:
|
|
pytest.skip("heh")
|