summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/pytest/bench/skip.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/tools/pytest/bench/skip.py')
-rw-r--r--testing/web-platform/tests/tools/pytest/bench/skip.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/tools/pytest/bench/skip.py b/testing/web-platform/tests/tools/pytest/bench/skip.py
new file mode 100644
index 000000000..960b30864
--- /dev/null
+++ b/testing/web-platform/tests/tools/pytest/bench/skip.py
@@ -0,0 +1,10 @@
+
+import pytest
+
+
+SKIP = True
+
+@pytest.mark.parametrize("x", xrange(5000))
+def test_foo(x):
+ if SKIP:
+ pytest.skip("heh")