From 616aa12be113d7ae58b84b593cd3417ad286d2c1 Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni <kaushikcfd@gmail.com> Date: Tue, 29 Jun 2021 08:44:24 -0500 Subject: [PATCH] gets rid of unnecessary pytest_generate_tests --- test/test_utils.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/test_utils.py b/test/test_utils.py index 90b3752..2228152 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -23,17 +23,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -from arraycontext import ( # noqa: F401 - pytest_generate_tests_for_array_contexts, - ) - import logging logger = logging.getLogger(__name__) -pytest_generate_tests = pytest_generate_tests_for_array_contexts([ - "pyopencl", "pyopencl-deprecated", "pytato-pyopencl" - ]) - def test_pt_actx_key_stringification_uniqueness(): from arraycontext.impl.pytato.compile import _ary_container_key_stringifier -- GitLab