目录名称DATA_DIR统一更新为INTERFACE_DIR

This commit is contained in:
floraachy
2023-12-18 11:41:37 +08:00
parent 37e9b57fde
commit 36bed90108
2 changed files with 21 additions and 21 deletions
+3 -3
View File
@@ -17,11 +17,11 @@ COMMON_DIR = os.path.join(BASE_DIR, "common_utils")
# 配置模块目录
CONF_DIR = os.path.join(BASE_DIR, "config")
# 测试数据模块目录
DATA_DIR = os.path.join(BASE_DIR, "interface")
# 接口数据模块目录
INTERFACE_DIR = os.path.join(BASE_DIR, "interface")
# gitlink测试数据模块目录
GITLINK_DIR = os.path.join(DATA_DIR, "gitlink")
GITLINK_DIR = os.path.join(INTERFACE_DIR, "gitlink")
# 测试文件模块目录
FILES_DIR = os.path.join(BASE_DIR, "files")