manyparam.py 193 B

123456789101112131415
  1. # -*- coding: utf-8 -*-
  2. import pytest
  3. @pytest.fixture(scope="module", params=range(966))
  4. def foo(request):
  5. return request.param
  6. def test_it(foo):
  7. pass
  8. def test_it2(foo):
  9. pass