1 Star 0 Fork 51

liangjianzhao/pytest_api_yaml

forked from 李超凡/pytest_api_yaml 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
conftest.py 608 Bytes
一键复制 编辑 原始数据 按行查看 历史
李超凡 提交于 2022-06-30 17:15 . 脱敏
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
@time : 2022/6/29
@Author : LL
@File : conftest.py
'''
import os
import pytest
from config.config import dd_path
from tool import get_token
from tool.read_file import ReadFile
@pytest.fixture(scope='session', autouse=True)
def session_controller():
'''全局前置和后置'''
'''测试开始,写入token信息'''
token = get_token()
ReadFile.yaml_write_token(token)
yield
'''测试结束发送钉钉'''
# 这里加等待时间不行,发送钉钉还是在启动报告服务之前
os.system(f'python {dd_path}')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liangjianzhao/pytest_api_yaml.git
git@gitee.com:liangjianzhao/pytest_api_yaml.git
liangjianzhao
pytest_api_yaml
pytest_api_yaml
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385