Pytest项目_day08(setup、teardown前置后置操作)

setup

  • 模块级setup_module:运行于模块开始之前,生效一次

    • 一个py文件(测试文件)就是一个模块
  • 函数级setup_function:对于每条(不在类中的)函数用例生效,如果函数在类中,那么它在执行之前不会执行setup_function

    • 需要写在类之外
  • 类级setup_class:只在类开始前运行一次,写在在类中

  • 方法级setup_method:运行于方法之前,写在在类中

teardown

  • 模块级teardown_module:运行于模块结束之后,生效一次
    • 一个py文件(测试文件)就是一个模块
  • 函数级teardown_function:运行于每条函数用例结束之后,不在类中
  • 类级teardown_class:只在类结束后运行一次,在类中
  • 方法级teardown_method:运行于方法之后,在类中

快捷运行方法

  • 可以在测试文件中定义main,这样左键点击左侧的小箭头可以直接运行整个测试文件
相关推荐
昔我往昔3 天前
pytest日志问题排查记录
python·pytest
黄昏恋慕黎明6 天前
博客论坛技术迭代
python·pytest
2601_962078236 天前
Python接口自动化流程(pytest)
python·pytest·接口自动化·测试框架·断言
杨女士YRJ6 天前
python+pytest+01
python·pytest
2601_962078238 天前
Python接口自动化框架:pytest
python·pytest·接口自动化·测试框架·restfulapi
2601_962078198 天前
Appium+Python+pytest自动化测试框架详解
自动化测试·python·appium·pytest·移动应用
2601_962284509 天前
安卓APP UI自动化测试:Python + UiAutomator2 + pytest + pytest-html
python·pytest·uiautomator2·ui自动化测试·安卓app
2601_962300819 天前
基于pytest的接口自动化测试:使用requests模块的实战项目与接口关联方法详解
接口自动化测试·测试用例·pytest·接口关联·requests模块
2601_962300819 天前
Python + Requests + Pytest + Excel + Allure:接口自动化测试项目实战
python·excel·pytest·allure·requests
11路没有终点10 天前
Pytest 安装、版本与第一个测试用例
测试用例·pytest