Skip to content

Commit c531386

Browse files
NXP backend: Sync config importer to nxp internal CI changes (#19552)
### Test plan Existing unit test
1 parent df3fa0d commit c531386

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

backends/nxp/tests/config_importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
logger = logging.getLogger(__name__)
99

1010
try:
11-
import test.python.config as test_config # noqa F401
11+
import config as test_config # noqa F401
1212

1313
logger.debug("Importing from executorch-integration")
1414
except ImportError:

backends/nxp/tests/nsys_testing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,7 @@ def _get_caller_name():
608608
def execute_cmd(cmd, cwd="."):
609609
env = environ.copy() # Copy the current environment
610610
env["LD_LIBRARY_PATH"] = str(NSYS_PATH.parent)
611+
logger.debug(f"Running command: {cmd}")
611612

612613
with subprocess.Popen(
613614
cmd,

backends/nxp/tests/outputs_dir_importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
logger = logging.getLogger(__name__)
99

1010
try:
11-
import test.python.outputs_dir as outputs_dir # noqa F401
11+
import outputs_dir as outputs_dir # noqa F401
1212

1313
logger.debug("Importing from executorch-integration")
1414
except ImportError:

0 commit comments

Comments
 (0)