@@ -205,7 +205,7 @@ def test_multiple_inheritance_python():
205
205
206
206
207
207
@pytest .mark .skipif ("env.PYPY and env.PY2" )
208
- @pytest .mark .xfail ("env.PYPY and not env.PY2" )
208
+ @pytest .mark .xfail ("env.PYPY and not env.PY2" , strict = False )
209
209
@pytest .mark .parametrize ("cls, i, j, v" , DISOWN_CLS_I_J_V_LIST )
210
210
def test_disown_base1_first (cls , i , j , v ):
211
211
obj = cls (i , j )
@@ -220,7 +220,7 @@ def test_disown_base1_first(cls, i, j, v):
220
220
221
221
222
222
@pytest .mark .skipif ("env.PYPY and env.PY2" )
223
- @pytest .mark .xfail ("env.PYPY and not env.PY2" )
223
+ @pytest .mark .xfail ("env.PYPY and not env.PY2" , strict = False )
224
224
@pytest .mark .parametrize ("cls, i, j, v" , DISOWN_CLS_I_J_V_LIST )
225
225
def test_disown_base2_first (cls , i , j , v ):
226
226
obj = cls (i , j )
@@ -235,7 +235,7 @@ def test_disown_base2_first(cls, i, j, v):
235
235
236
236
237
237
@pytest .mark .skipif ("env.PYPY and env.PY2" )
238
- @pytest .mark .xfail ("env.PYPY and not env.PY2" )
238
+ @pytest .mark .xfail ("env.PYPY and not env.PY2" , strict = False )
239
239
@pytest .mark .parametrize (
240
240
"cls, j, v" ,
241
241
[
0 commit comments