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