1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-11 02:49:06 +00:00
Files
UXP/testing/web-platform/tests/tools/pytest/bench/skip.py
T

11 lines
131 B
Python

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