mirror of
https://github.com/servo/servo.git
synced 2025-07-10 08:53:41 +01:00
10 lines
131 B
Python
10 lines
131 B
Python
|
|
import pytest
|
|
|
|
|
|
SKIP = True
|
|
|
|
@pytest.mark.parametrize("x", xrange(5000))
|
|
def test_foo(x):
|
|
if SKIP:
|
|
pytest.skip("heh")
|