summaryrefslogtreecommitdiff
path: root/bench/manyparam.py
blob: d2bca0e8acd1e394cd3a85852512bdab181bb82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12

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