test_ok1/bench/skip.py

13 lines
182 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from six.moves import range
import pytest
SKIP = True
2018-05-23 22:48:46 +08:00
@pytest.mark.parametrize("x", range(5000))
def test_foo(x):
if SKIP:
pytest.skip("heh")