From 51070d29a4d6a8e0aa0259aeb3e6e8945beefae6 Mon Sep 17 00:00:00 2001 From: Edoardo Paone Date: Wed, 4 Dec 2024 14:33:54 +0100 Subject: [PATCH] Disable iterator tests on DaCe GTIR backend --- tests/next_tests/unit_tests/conftest.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/next_tests/unit_tests/conftest.py b/tests/next_tests/unit_tests/conftest.py index f1269f1ed8..99bc44efa7 100644 --- a/tests/next_tests/unit_tests/conftest.py +++ b/tests/next_tests/unit_tests/conftest.py @@ -60,15 +60,6 @@ def _program_processor(request) -> tuple[ProgramProcessor, bool]: (next_tests.definitions.ProgramFormatterId.LISP_FORMATTER, False), (next_tests.definitions.ProgramFormatterId.ITIR_PRETTY_PRINTER, False), (next_tests.definitions.ProgramFormatterId.GTFN_CPP_FORMATTER, False), - pytest.param( - (next_tests.definitions.OptionalProgramBackendId.DACE_CPU, True), - marks=pytest.mark.requires_dace, - ), - # TODO(havogt): update tests to use proper allocation - # pytest.param( - # (next_tests.definitions.OptionalProgramBackendId.DACE_GPU, True), - # marks=(pytest.mark.requires_dace, pytest.mark.requires_gpu), - # ), ], ids=lambda p: p[0].short_id() if p[0] is not None else "None", )