diff --git a/tests/kernelcreation/test_functions.py b/tests/kernelcreation/test_functions.py
index 90c061307bbf0a57278c8c4c9185f2690f6587d2..2fdae2280655cf4d0c7557ef5f36c52f7e993dc3 100644
--- a/tests/kernelcreation/test_functions.py
+++ b/tests/kernelcreation/test_functions.py
@@ -137,7 +137,7 @@ def test_binary_functions(gen_config, xp, function_name, dtype):
 
 dtype_and_target_for_integer_funcs = pytest.mark.parametrize(
     "dtype, target",
-    list(product([np.int32], AVAIL_TARGETS))
+    list(product([np.int32], [t for t in AVAIL_TARGETS if t is not Target.CUDA]))
     + list(
         product(
             [np.int64],