Files
pytest2/bench/manyparam.py
Ronny Pfannschmidt 703e4b11ba run black
2018-05-23 16:48:46 +02:00

16 lines
170 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