diff --git a/tests/next_tests/integration_tests/cases.py b/tests/next_tests/integration_tests/cases.py index d5e5386c35..6217d3c782 100644 --- a/tests/next_tests/integration_tests/cases.py +++ b/tests/next_tests/integration_tests/cases.py @@ -32,7 +32,8 @@ from gt4py.next.ffront import decorator from gt4py.next.program_processors import processor_interface as ppi from gt4py.next.type_system import type_specifications as ts, type_translation -from tests.next_tests.integration_tests.feature_tests.ffront_tests.ffront_test_utils import ( # noqa: F401 # fixture and aliases + +from next_tests.integration_tests.feature_tests.ffront_tests.ffront_test_utils import ( # noqa: F401 # fixture and aliases Cell, Edge, IDim, diff --git a/tests/next_tests/integration_tests/feature_tests/ffront_tests/ffront_test_utils.py b/tests/next_tests/integration_tests/feature_tests/ffront_tests/ffront_test_utils.py index 0488c43ed3..e25576ebde 100644 --- a/tests/next_tests/integration_tests/feature_tests/ffront_tests/ffront_test_utils.py +++ b/tests/next_tests/integration_tests/feature_tests/ffront_tests/ffront_test_utils.py @@ -32,8 +32,8 @@ else: raise e -import tests.next_tests -import tests.next_tests.exclusion_matrices as definitions +import next_tests +import next_tests.exclusion_matrices as definitions def no_backend(program: itir.FencilDefinition, *args: Any, **kwargs: Any) -> None: @@ -71,7 +71,7 @@ def fieldview_backend(request): backend_id = request.param backend = None if backend_id is None else backend_id.load() - for marker, skip_mark, msg in tests.next_tests.exclusion_matrices.BACKEND_SKIP_TEST_MATRIX.get( + for marker, skip_mark, msg in next_tests.exclusion_matrices.BACKEND_SKIP_TEST_MATRIX.get( backend_id, [] ): if request.node.get_closest_marker(marker): diff --git a/tests/next_tests/integration_tests/feature_tests/ffront_tests/test_as_offset.py b/tests/next_tests/integration_tests/feature_tests/ffront_tests/test_as_offset.py index dcc7f75294..adab6a71b0 100644 --- a/tests/next_tests/integration_tests/feature_tests/ffront_tests/test_as_offset.py +++ b/tests/next_tests/integration_tests/feature_tests/ffront_tests/test_as_offset.py @@ -20,9 +20,10 @@ import gt4py.next as gtx from gt4py.next.ffront.experimental import as_offset -from tests.next_tests.integration_tests import cases -from tests.next_tests.integration_tests.cases import IDim, Ioff, JDim, KDim, Koff, cartesian_case -from tests.next_tests.integration_tests.feature_tests.ffront_tests.ffront_test_utils import ( + +from next_tests.integration_tests import cases +from next_tests.integration_tests.cases import IDim, Ioff, JDim, KDim, Koff, cartesian_case +from next_tests.integration_tests.feature_tests.ffront_tests.ffront_test_utils import ( fieldview_backend, reduction_setup, )