summaryrefslogtreecommitdiff
path: root/bench/skip.py
blob: 891b9be134ab8a5bfb910e9be167775f40950a71 (plain)
1
2
3
4
5
6
7
8
9
10
11

import pytest


SKIP = True


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