mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 22:28:43 +00:00
13 lines
167 B
Python
13 lines
167 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
|
|
|