摘要:
1-3优先级逐渐降低: 会话:fixture的session级别最高 class:fixture的class scope的优先级 > setup_class function: fixture的function scope的优先级 > setup_method 阅读全文
摘要:
与全局配置pytest.ini配置文件结合使用(见配置文件章节) 例如 配置文件中设置 markers = #分成三类High/Normal,Low High: smoke test Normal: product test Low: full test cases 分模块执行: - Case中加装 阅读全文
摘要:
安装 1. 安装Python 2. 安装pytest: pip install -U pytest 3. 安装常用插件 pip install -r requirement.txt PS: 常用插件: pytest allure-pytest requests PyYAML pandas openp 阅读全文
摘要:
conftest.py文件专门用来存放fixture的文件,名称固定不能修改。 conftest.py中的所有方法在调用时都不需要导包 一个用例可以同时调用多个conftest.py中的多个方法 一般conftest.py中的方法autouse= True, 自动执行。 conftest.py放在最 阅读全文