From dcae5a08b7f5aa1fbf787b7a162487dbb52984c8 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 2 Nov 2016 17:02:09 -0500 Subject: [PATCH] xfail bitwise test for pypy. --- test/test_array.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_array.py b/test/test_array.py index 045deb26..0e043053 100644 --- a/test/test_array.py +++ b/test/test_array.py @@ -470,6 +470,9 @@ def test_divide_array(ctx_factory): def test_bitwise(ctx_factory): + if _PYPY: + pytest.xfail("numpypy: missing bitwise ops") + context = ctx_factory() queue = cl.CommandQueue(context) -- GitLab