diff --git a/arraycontext/pytest.py b/arraycontext/pytest.py
index 5bad85c74658de62d55ada95d441603b76449d95..cfba57f3790ab12a912c92cdc9cb9e793e9a04b6 100644
--- a/arraycontext/pytest.py
+++ b/arraycontext/pytest.py
@@ -115,6 +115,14 @@ def pytest_generate_tests_for_array_contexts(metafunc) -> None:
 
     metafunc.parametrize(arg_names, arg_values_out, ids=ids)
 
+
+def pytest_generate_tests_for_pyopencl_array_context(metafunc) -> None:
+    from warnings import warn
+    warn("'pytato.pytest_generate_tests_for_pyopencl_array_context' "
+         "is deprecated, use 'pytato.pytest_generate_tests_for_array_contexts' "
+         "instead.", DeprecationWarning)
+    pytest_generate_tests_for_array_contexts(metafunc)
+
 # }}}