fix(mailu): fix _mailu import path in ops.py+overlays (functional/ subdir)
This commit is contained in:
@ -9,7 +9,7 @@ import sys
|
|||||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "runner"))
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "runner"))
|
||||||
from harness import lifecycle # noqa: E402
|
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
|
import _mailu # noqa: E402
|
||||||
|
|
||||||
_CI_LOCALPART = "citest"
|
_CI_LOCALPART = "citest"
|
||||||
|
|||||||
@ -9,7 +9,7 @@ from __future__ import annotations
|
|||||||
import os
|
import os
|
||||||
import sys
|
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
|
import _mailu # noqa: E402
|
||||||
|
|
||||||
_CI_LOCALPART = "citest"
|
_CI_LOCALPART = "citest"
|
||||||
|
|||||||
@ -9,7 +9,7 @@ from __future__ import annotations
|
|||||||
import os
|
import os
|
||||||
import sys
|
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
|
import _mailu # noqa: E402
|
||||||
|
|
||||||
_CI_LOCALPART = "citest"
|
_CI_LOCALPART = "citest"
|
||||||
|
|||||||
Reference in New Issue
Block a user