I have a scenario where being able to sub-class a base test class in py.test would make our test environment very extensible. The problem I have is I cannot override the base class's attributes and use them in the parametrize decorator.
import pytest
class TestBase():
l = [2,3]
@pytest.mark.parametrize('p', l)
def testOne(self, p):
assert p == p
class TestSubClass(TestBase):
l = [1, 2, 3, 4]
class TestSubClass2(TestBase):
l = [3, 5]
In this scenario TestSubClass
and TestSubClass2
always run using the list l
from TestBase
because the scope for the decorator to find l
is the immediate local scope.
I can't use self.l
because self
does not exist at the time the decorator is evaluated (there is no instance).
I can work around this and perform the parametrization manually in the test case but then I lose the individual reporting from py.test. Eg.
import pytest
class TestBase()
def testOne(self):
for p in self.l:
assert p == p
class TestSubClass(TestBase):
l = [1, 2, 3, 4]
class TestSubClass2(TestBase):
l = [3, 5]
How can I sub-class a base class and customize the parametrisation for each sub-class?
I have a
slightlyterrible solution:The code:
And the corresponding output:
There's some terrible consequences of this approach: