码迷,mamicode.com
首页 > 其他好文 > 详细

自动化测试项目config常量

时间:2020-06-27 13:23:15      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:ftime   路径   自动化测试   user   config   绝对路径   file   name   时间   

import time
import os
import getpass

# 时间戳
times = time.strftime("%Y%m%d%H%M%S")
# 项目的绝对路径
BASE_PATH = ‘/‘.join(os.path.abspath(__file__).split("/")[:-2])
# 用例的绝对路径
CASES_PATH = os.path.join(BASE_PATH, "cases")
# 报告的绝对路径
REPORT_PATH = os.path.join(BASE_PATH, "report")
# 数据的绝对路径
DATA_PATH = os.path.join(BASE_PATH, "data")
# username
USERNAME = getpass.getuser()

  

自动化测试项目config常量

标签:ftime   路径   自动化测试   user   config   绝对路径   file   name   时间   

原文地址:https://www.cnblogs.com/mikigo/p/13197941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!