summaryrefslogtreecommitdiff
path: root/bench/skip.py
blob: b105e79f82ebf9f65b864a94b14f484dcc2c636c (plain)
1
2
3
4
5
6
7
8
9
10
11
from six.moves import range
import pytest


SKIP = True


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