test_ok2/bench/manyparam.py

15 lines
169 B
Python
Raw Normal View History

import pytest
2018-05-23 22:48:46 +08:00
@pytest.fixture(scope="module", params=range(966))
def foo(request):
return request.param
2018-05-23 22:48:46 +08:00
def test_it(foo):
pass
2018-05-23 22:48:46 +08:00
def test_it2(foo):
pass