14 lines
420 B
Python
14 lines
420 B
Python
# -*- coding: utf-8 -*-
|
|||
|
|
"""测试引导:把 ``deploy/orchestration`` 挂到 sys.path,使 deploy_plan/rollback
|
||
|
|
可被 ``from deploy_plan import ...`` 导入(orchestration 包内相对导入需要)。
|
||
|
|
|
||
|
|
与 core 模块测试引导同款模式。
|
||
|
|
"""
|
||
|
|
import os
|
||
|
|
import sys
|
||
|
|
import types
|
||
|
|
|
||
|
|
PKG_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||
|
|
if PKG_DIR not in sys.path:
|
||
|
|
sys.path.insert(0, PKG_DIR)
|