From 979b836c686872dd2a1f3419cbe5a79d3bc0f578 Mon Sep 17 00:00:00 2001 From: Aleksei Apaseev Date: Fri, 1 Jul 2022 23:42:35 +0800 Subject: [PATCH] ci: rename module name due to the wrong import in other packages --- tools/test_apps/system/panic/conftest.py | 2 +- tools/test_apps/system/panic/{utils.py => panic_utils.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tools/test_apps/system/panic/{utils.py => panic_utils.py} (100%) diff --git a/tools/test_apps/system/panic/conftest.py b/tools/test_apps/system/panic/conftest.py index 9e28acb13c..e688deb9c7 100644 --- a/tools/test_apps/system/panic/conftest.py +++ b/tools/test_apps/system/panic/conftest.py @@ -13,11 +13,11 @@ import pexpect import pytest from _pytest.fixtures import FixtureRequest from _pytest.monkeypatch import MonkeyPatch +from panic_utils import NoGdbProcessError, attach_logger, quote_string, sha256, verify_valid_gdb_subprocess from pygdbmi.gdbcontroller import GdbController from pytest_embedded_idf.app import IdfApp from pytest_embedded_idf.dut import IdfDut from pytest_embedded_idf.serial import IdfSerial -from utils import NoGdbProcessError, attach_logger, quote_string, sha256, verify_valid_gdb_subprocess class PanicTestDut(IdfDut): diff --git a/tools/test_apps/system/panic/utils.py b/tools/test_apps/system/panic/panic_utils.py similarity index 100% rename from tools/test_apps/system/panic/utils.py rename to tools/test_apps/system/panic/panic_utils.py