Skip to content

Commit 850cf13

Browse files
Create test_subclass.py
1 parent 426f2d3 commit 850cf13

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/tests/test_subclass.py

-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def OnTestEvent(self, value):
8585
return DerivedEventTest
8686

8787

88-
@pytest.mark.skip(reason="FIXME: test randomly pass/fails")
8988
def test_base_class():
9089
"""Test base class managed type"""
9190
ob = SubClassTest()
@@ -98,7 +97,6 @@ def test_base_class():
9897
assert list(SubClassTest.test_list(ob)) == ["a", "b", "c"]
9998

10099

101-
@pytest.mark.skip(reason="FIXME: test randomly pass/fails")
102100
def test_interface():
103101
"""Test python classes can derive from C# interfaces"""
104102
InterfaceTestClass = interface_test_class_fixture()
@@ -112,7 +110,6 @@ def test_interface():
112110
assert id(x) == id(ob)
113111

114112

115-
@pytest.mark.skip(reason="FIXME: test randomly pass/fails")
116113
def test_derived_class():
117114
"""Test python class derived from managed type"""
118115
DerivedClass = derived_class_fixture()

0 commit comments

Comments
 (0)