summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/test_virtual_functions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/tests/test_virtual_functions.py')
-rw-r--r--ext/pybind11/tests/test_virtual_functions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pybind11/tests/test_virtual_functions.py b/ext/pybind11/tests/test_virtual_functions.py
index a9aecd67f..b11c699df 100644
--- a/ext/pybind11/tests/test_virtual_functions.py
+++ b/ext/pybind11/tests/test_virtual_functions.py
@@ -206,6 +206,9 @@ def test_inheriting_repeat():
assert obj.say_everything() == "BT -7"
+# PyPy: Reference count > 1 causes call with noncopyable instance
+# to fail in ncv1.print_nc()
+@pytest.unsupported_on_pypy
@pytest.mark.skipif(not hasattr(pybind11_tests, 'NCVirt'),
reason="NCVirt test broken on ICPC")
def test_move_support():