Repository URL to install this package:
|
Version:
7.1.1 ▾
|
import unittest
import pytest
@pytest.fixture(params=[1, 2])
def two(request):
return request.param
@pytest.mark.usefixtures("two")
class TestSomethingElse(unittest.TestCase):
def test_two(self):
pass