Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backends/nxp/tests/config_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
logger = logging.getLogger(__name__)

try:
import test.python.config as test_config # noqa F401
import config as test_config # noqa F401

logger.debug("Importing from executorch-integration")
except ImportError:
Expand Down
1 change: 1 addition & 0 deletions backends/nxp/tests/nsys_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,7 @@ def _get_caller_name():
def execute_cmd(cmd, cwd="."):
env = environ.copy() # Copy the current environment
env["LD_LIBRARY_PATH"] = str(NSYS_PATH.parent)
logger.debug(f"Running command: {cmd}")

with subprocess.Popen(
cmd,
Expand Down
2 changes: 1 addition & 1 deletion backends/nxp/tests/outputs_dir_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
logger = logging.getLogger(__name__)

try:
import test.python.outputs_dir as outputs_dir # noqa F401
import outputs_dir as outputs_dir # noqa F401

logger.debug("Importing from executorch-integration")
except ImportError:
Expand Down
Loading