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