mirror of
https://github.com/servo/servo
synced 2026-05-02 20:32:02 +02:00
11 lines
131 B
Python
11 lines
131 B
Python
|
|
import pytest
|
|
|
|
|
|
SKIP = True
|
|
|
|
@pytest.mark.parametrize("x", xrange(5000))
|
|
def test_foo(x):
|
|
if SKIP:
|
|
pytest.skip("heh")
|