Skip to content

Commit 5dea44b

Browse files
committed
adjust tests for pypy HEAD
1 parent fd72781 commit 5dea44b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_class_sh_disowning_mi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def __init__(self, i):
145145
MI6.__init__(self, i)
146146

147147

148-
@pytest.mark.xfail("env.PYPY")
148+
@pytest.mark.xfail("env.PYPY", strict=False)
149149
def test_multiple_inheritance_python():
150150
# Based on test_multiple_inheritance.py:test_multiple_inheritance_python.
151151
# Exercises values_and_holders with 2 value_and_holder instances.

tests/test_multiple_inheritance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_multiple_inheritance_cpp():
1414
assert mt.bar() == 4
1515

1616

17-
@pytest.mark.xfail("env.PYPY")
17+
@pytest.mark.xfail("env.PYPY", strict=False)
1818
def test_multiple_inheritance_mix1():
1919
class Base1:
2020
def __init__(self, i):
@@ -53,7 +53,7 @@ def __init__(self, i, j):
5353
assert mt.bar() == 4
5454

5555

56-
@pytest.mark.xfail("env.PYPY")
56+
@pytest.mark.xfail("env.PYPY", strict=False)
5757
def test_multiple_inheritance_python():
5858
class MI1(m.Base1, m.Base2):
5959
def __init__(self, i, j):

0 commit comments

Comments
 (0)