fix(mailu): fix _mailu import path in ops.py+overlays (functional/ subdir)
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is passing

This commit is contained in:
autonomic-bot
2026-06-11 20:44:40 +00:00
parent 36ece30442
commit 1fbc4e0b15
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "runner"))
from harness import lifecycle # noqa: E402
sys.path.insert(0, os.path.dirname(__file__))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "functional"))
import _mailu # noqa: E402
_CI_LOCALPART = "citest"

View File

@ -9,7 +9,7 @@ from __future__ import annotations
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "functional"))
import _mailu # noqa: E402
_CI_LOCALPART = "citest"

View File

@ -9,7 +9,7 @@ from __future__ import annotations
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "functional"))
import _mailu # noqa: E402
_CI_LOCALPART = "citest"