Files
UXP-Fixed/testing/web-platform/tests/tools/pytest/bench/skip.py
T
2018-02-02 04:16:08 -05:00

11 lines
131 B
Python

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