summaryrefslogtreecommitdiff
path: root/bench/manyparam.py
blob: 1226c73bd9cde14ca1e1690fcab5f834a0e77341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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