pytest

Posted 菜鸟哟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest相关的知识,希望对你有一定的参考价值。

1.执行以test开头或者以test结尾的方法/类

2.assert False 将终止运行

@pytest.mark.xfail 预期失败

@pytest.mark.skip 跳过

@pytest.mark.unfinished 未完成的

@pytest.mark.parametrize 多组参数

@pytest.fixture(scope=\'function\', name=\'okkk\') 自定义固件写在conftest.py中,pytest自己调用 

pytest test_se.py::TestClassTwo::test_one 执行xx.py文件xx类的xx方法 运行指定的自动化测试用例

pytest集成allure生成优美的报告页面

 

以上是关于pytest的主要内容,如果未能解决你的问题,请参考以下文章

pytest:是不是可以从代码中启用标记?

Pytest02-pytest命名规则

pytest文档57-计算单元测试代码覆盖率(pytest-cov)

运行pytest

pytest文档3-pycharm运行pytest

Pytest08-pytest工具与插件