Files
pytest2/bench/manyparam.py
2019-06-03 12:08:01 -03:00

15 lines
169 B
Python

import pytest
@pytest.fixture(scope="module", params=range(966))
def foo(request):
return request.param
def test_it(foo):
pass
def test_it2(foo):
pass