-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
topic: collectionrelated to the collection phaserelated to the collection phasetopic: marksrelated to marks, either the general marks or builtinrelated to marks, either the general marks or builtintype: bugproblem that needs to be addressedproblem that needs to be addressed
Description
Originally reported by: Markus Unterwaditzer (BitBucket: untitaker, GitHub: untitaker)
Given this class hierarchy:
import pytest
class Foo(object):
def test_lol(self):
pass
@pytest.mark.skipif(False, reason='BECAUSE')
class TestBar(Foo):
pass
@pytest.mark.skipif(True, reason='BECAUSE')
class TestBaz(Foo):
pass
py.test will skip the single testcase of both TestBar and TestBaz.
Metadata
Metadata
Assignees
Labels
topic: collectionrelated to the collection phaserelated to the collection phasetopic: marksrelated to marks, either the general marks or builtinrelated to marks, either the general marks or builtintype: bugproblem that needs to be addressedproblem that needs to be addressed