Pytest如何使用skip跳过执行测试


Posted in Python onAugust 13, 2020

1、@pytest.mark.skip(reason=" ") -- 跳过执行测试函数

可传入一个非必须参数reason表示原因

import pytest
@pytest.mark.skip(reason="no reason")
def test_01():
  print("---用例a执行---")
class TestCase():
  @pytest.mark.skip(reason="no reason")
  def test_02(self):
    print("---用例b执行---")

  def test_03(self):
    print("---用例c执行---")

输出结果:

test_fixture2.py ss---用例c执行---

2、@pytest.mark.skipif(condition...) -- 若满足condition,则跳过测试函数

传入condition参数为判断条件,可以选择传入非必须参数reason;如果多个标签一起使用,满足其中一个跳过条件则会跳过该测试函数。

import pytest
def test_01():
  print("---用例a执行---")
class TestCase():
  #当多个@pytest.mark.skipif()标签时,若满足一个,则跳过测试函数
  @pytest.mark.skipif(condition='a' >= 'b', reason="no reason")
  @pytest.mark.skipif(condition='a' <= 'b', reason="no reason")
  def test_02(self):
    print("---用例b执行---")

  def test_03(self):
    print("---用例c执行---")

输出结果:

test_fixture2.py ---用例a执行---
.s---用例c执行---

3、自定义@pytest.mark.skip()标签

myskip = pytest.mark.skip() 或 myskip = pytest.mark.skipif(condition=...)

装饰时用该变量代替标签即可:@myskip

import pytest
# myskip = pytest.mark.skip()
myskip = pytest.mark.skipif(condition=2>1, reason="no reason")

@myskip
def test_01():
  print("---用例a执行---")

class TestCase():

  @myskip
  def test_02(self):
    print("---用例b执行---")

  def test_03(self):
    print("---用例c执行---")

输出结果:

test_fixture2.py ss---用例c执行---

4、通过pytest.skip()方法跳过测试函数

import pytest

def test_01():
  pytest.skip(msg="no reason")
  print("---用例a执行---")

class TestCase():

  def test_02(self):
    pytest.skip()
    print("---用例b执行---")

  def test_03(self):
    print("---用例c执行---")

输出结果:

test_fixture2.py ss---用例c执行--

5、跳过测试类

跳过测试类其实和跳过测试方法一样,使用@pytest.mark.skip()和@pytest.mark.skipif()两个标签,用他们装饰测试类就好啦。

import pytest
myskip = pytest.mark.skip(reason="no reason")
def test_01():
  print("---用例a执行---")
@myskip
class TestCase():
  def test_02(self):
    print("---用例b执行---")
  def test_03(self):
    print("---用例c执行---")

输出结果:

test_fixture2.py ---用例a执行---

6、跳过模块

使用pytestmark(不可更改变量名)变量,让他等于标签即可。

import pytest

pytestmark = pytest.mark.skip(condition=2>1, reason='no reason')

def test_01():
  print("---用例a执行---")

class TestCase():

  def test_02(self):
    print("---用例b执行---")

  def test_03(self):
    print("---用例c执行---")

输出结果:

test_fixture2.py sss

7、pycharm中运行多个测试文件

依次将要运行的文件名写在后面即可,用逗号隔开,无需链表元组等形式。

if __name__ == "__main__":
  pytest.main(['-s', 'test_fixture1.py', 'test_fixture2.py'])

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
跟老齐学Python之玩转字符串(2)
Sep 14 Python
Python获取央视节目单的实现代码
Jul 25 Python
Python实现PS滤镜的旋转模糊功能示例
Jan 20 Python
Python3 XML 获取雅虎天气的实现方法
Feb 01 Python
Python基于分析Ajax请求实现抓取今日头条街拍图集功能示例
Jul 19 Python
python查看模块,对象的函数方法
Oct 16 Python
pandas每次多Sheet写入文件的方法
Dec 10 Python
Django如何自定义model创建数据库索引的顺序
Jun 20 Python
Pytorch 实现sobel算子的卷积操作详解
Jan 10 Python
Python unittest框架操作实例解析
Apr 13 Python
Python 操作 PostgreSQL 数据库示例【连接、增删改查等】
Apr 21 Python
Python threading模块condition原理及运行流程详解
Oct 05 Python
matplotlib基础绘图命令之bar的使用方法
Aug 13 #Python
Python logging模块原理解析及应用
Aug 13 #Python
matplotlib基础绘图命令之imshow的使用
Aug 13 #Python
使用jupyter notebook运行python和R的步骤
Aug 13 #Python
matplotlib基础绘图命令之errorbar的使用
Aug 13 #Python
Python如何读写CSV文件
Aug 13 #Python
区分python中的进程与线程
Aug 13 #Python
You might like
第六节--访问属性和方法
2006/11/16 PHP
IIS+PHP+MySQL+Zend配置 (视频教程)
2006/12/13 PHP
一致性哈希算法以及其PHP实现详细解析
2013/08/24 PHP
PHP实现模仿socket请求返回页面的方法
2014/11/04 PHP
php函数mkdir实现递归创建层级目录
2016/10/27 PHP
thinkphp实现分页显示功能
2016/12/03 PHP
thinkPHP通用控制器实现方法示例
2017/11/23 PHP
PHP中十六进制颜色与RGB颜色值互转的方法
2019/03/18 PHP
JQuery 将元素显示在屏幕的中央的代码
2010/02/27 Javascript
js控制的遮罩层实例介绍
2013/05/29 Javascript
JavaScript实现点击文字切换登录窗口的方法
2015/05/11 Javascript
jQuery+formdata实现上传进度特效遇到的问题
2016/02/24 Javascript
VUEJS实战之利用laypage插件实现分页(3)
2016/06/13 Javascript
JavaScript实现输入框与清空按钮联动效果
2016/09/09 Javascript
javascript自定义事件功能与用法实例分析
2017/11/08 Javascript
Bootstrap实现下拉菜单多级联动
2017/11/23 Javascript
Javascript中prototype与__proto__的关系详解
2018/03/11 Javascript
Angular5给组件本身的标签添加样式class的方法
2018/04/07 Javascript
对类Vue的MVVM前端库的实现代码
2018/09/07 Javascript
js实现同一个页面,多个enter事件绑定的示例
2018/10/10 Javascript
微信小程序云开发实现云数据库读写权限
2019/05/17 Javascript
javascript自定义日期比较函数用法示例
2019/07/22 Javascript
vuex vue简单使用知识点总结
2019/08/29 Javascript
生成无限制的微信小程序码的示例代码
2019/09/20 Javascript
vue项目中极验验证的使用代码示例
2019/12/03 Javascript
JS实现碰撞检测效果
2020/03/12 Javascript
Vue使用Element实现增删改查+打包的步骤
2020/11/25 Vue.js
[00:52]DOTA2齐天大圣预告片
2016/08/13 DOTA
Python实现HTTP协议下的文件下载方法总结
2016/04/20 Python
python生成圆形图片的方法
2020/03/25 Python
在Ubuntu 20.04中安装Pycharm 2020.1的图文教程
2020/04/30 Python
HTML5新增的标签和属性归纳总结
2018/05/02 HTML / CSS
韩国现代百货官网:Hmall
2018/03/21 全球购物
财务工作个人求职的自我评价
2013/12/19 职场文书
四个太阳教学反思
2014/02/01 职场文书
2015小学教师年度考核工作总结
2015/05/12 职场文书