summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/third_party/pytest/bench/skip.py
blob: f0c9d1ddbeffbc421123816d4ebee4605a41eeb7 (plain)
1
2
3
4
5
6
7
8
9
import pytest

SKIP = True


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