Skip to content

Commit

Permalink
changes to path
Browse files Browse the repository at this point in the history
  • Loading branch information
nfarabullini committed Jan 15, 2024
1 parent 6387049 commit 1e892b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion tests/next_tests/integration_tests/cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit 1e892b4

Please sign in to comment.