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

import pytest


SKIP = True

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