29 lines
669 B
Python
29 lines
669 B
Python
#!/usr/bin/env python
|
||
# coding=utf-8
|
||
|
||
"""
|
||
@author: CNWei
|
||
@Software: PyCharm
|
||
@contact: t6i888@163.com
|
||
@file: settings
|
||
@date: 2025/2/23 21:34
|
||
@desc:
|
||
"""
|
||
base_url = 'http://127.0.0.1:8000'
|
||
case_path = r"E:\PyP\InterfaceAutoTest\TestCases"
|
||
exchanger = r"E:\PyP\InterfaceAutoTest\extract.yaml"
|
||
id_path =r"E:\PyP\InterfaceAutoTest\id.yaml"
|
||
|
||
db_host = '119.91.19.171' # ip
|
||
db_port = 3306 # 端口
|
||
db_user = 'root' # 用户名
|
||
db_password = 'mysql_hNahSe' # 密码
|
||
db_database = 'answer' # 库名
|
||
|
||
allure_epic: str = "项目名称:answer"
|
||
allure_feature: str = "默认特征(feature)"
|
||
allure_story: str = "默认事件(story)"
|
||
|
||
rsa_public = ""
|
||
rsa_private = ""
|