| commit | 6937d35b892b85f3a32e367d02af6e827637bd4b | [log] [tgz] |
|---|---|---|
| author | Ievgeniia Zadorozhna <izadorozhna@mirantis.com> | Mon Dec 22 16:28:37 2025 +0100 |
| committer | Ievgeniia Zadorozhna <izadorozhna@mirantis.com> | Mon Dec 22 16:28:37 2025 +0100 |
| tree | 32edefbc0815dbc875b394e7d4e0e56bd4586e28 | |
| parent | a56b6fc5561282fe10d388b4a6eb370df2758de9 [diff] |
WA to avoid the KSI circular import error Related-PROD: K0RQA-15 Change-Id: I21636d27cde84348502e0956baf88bcc3b5aa0bd
diff --git a/k8s/sanity-checks/test_sanity_checks.py b/k8s/sanity-checks/test_sanity_checks.py index f121e3b..791a205 100644 --- a/k8s/sanity-checks/test_sanity_checks.py +++ b/k8s/sanity-checks/test_sanity_checks.py
@@ -1,5 +1,9 @@ import pytest +try: + import si_tests.utils.utils +except ImportError: + pass from si_tests import settings from si_tests.clients import k8s as k8s_client from si_tests.fixtures.kubectl import kcm_manager