File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,8 @@ def pytest_configure():
215
215
pytest .requires_eigen_and_scipy = skipif (
216
216
not have_eigen or not scipy , reason = "eigen and/or scipy are not installed" )
217
217
pytest .unsupported_on_pypy = skipif (pypy , reason = "unsupported on PyPy" )
218
+ pytest .unsupported_on_pypy3 = skipif (pypy and sys .version_info .major >= 3 ,
219
+ reason = "unsupported on PyPy3" )
218
220
pytest .unsupported_on_pypy_lt_6 = skipif (pypy and sys .pypy_version_info [0 ] < 6 ,
219
221
reason = "unsupported on PyPy<6" )
220
222
pytest .unsupported_on_py2 = skipif (sys .version_info .major < 3 ,
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ def test_evals(capture):
13
13
14
14
assert m .test_eval_failure ()
15
15
16
- @pytest .unsupported_on_pypy
16
+
17
+ @pytest .unsupported_on_pypy3
17
18
def test_eval_file ():
18
19
filename = os .path .join (os .path .dirname (__file__ ), "test_eval_call.py" )
19
20
assert m .test_eval_file (filename )
You can’t perform that action at this time.
0 commit comments