summaryrefslogtreecommitdiff
path: root/numpy/f2py
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2019-04-22 10:02:38 -0700
committerGitHub <noreply@github.com>2019-04-22 10:02:38 -0700
commit2b59dcb273f00e7be13cdc32c5f396a55781c2f4 (patch)
tree6cba210849f975707bd0d6d5313294297765483b /numpy/f2py
parent365e8b319c3756afe80d1b41de1a812f76be872c (diff)
parentf402a691a9c99e0ba2e090d4f8269ea81aac1a50 (diff)
downloadnumpy-2b59dcb273f00e7be13cdc32c5f396a55781c2f4.tar.gz
Merge pull request #12594 from mattip/pypy3-testing
DEV, BUILD: add pypy3 to azure CI
Diffstat (limited to 'numpy/f2py')
-rw-r--r--numpy/f2py/tests/test_block_docstring.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/f2py/tests/test_block_docstring.py b/numpy/f2py/tests/test_block_docstring.py
index 8fc072a5e..4f1678980 100644
--- a/numpy/f2py/tests/test_block_docstring.py
+++ b/numpy/f2py/tests/test_block_docstring.py
@@ -4,7 +4,7 @@ import sys
import pytest
from . import util
-from numpy.testing import assert_equal
+from numpy.testing import assert_equal, IS_PYPY
class TestBlockDocString(util.F2PyTest):
code = """
@@ -18,6 +18,7 @@ class TestBlockDocString(util.F2PyTest):
@pytest.mark.skipif(sys.platform=='win32',
reason='Fails with MinGW64 Gfortran (Issue #9673)')
+ @pytest.mark.xfail(IS_PYPY, reason="PyPy does not modify tp_doc")
def test_block_docstring(self):
expected = "'i'-array(2,3)\n"
assert_equal(self.module.block.__doc__, expected)