1 Star 0 Fork 1

tushenmei/api_test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
conftest.py 661 Bytes
一键复制 编辑 原始数据 按行查看 历史
tushenmei 提交于 2022-05-11 18:42 . aa
import pytest
from commons.yaml_util import clear_extract_yaml
@pytest.fixture(scope="module", autouse=True)
def clear_extract():
clear_extract_yaml()
def pytest_collection_modifyitems(session, items):
"""
the order of use cases can be executed according to the .py file
"""
appoint_classes = {"TestFolderApi": [], "TestAttachmentsApi": [], "TestBoardsApi": [], "TestPagesApi": []}
for item in items:
for cls_name in appoint_classes:
if item.parent.name == cls_name:
appoint_classes[cls_name].append(item)
items.clear()
for cases in appoint_classes.values():
items.extend(cases)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tushenmei/api_test.git
[email protected]:tushenmei/api_test.git
tushenmei
api_test
api_test
master

搜索帮助