Pytest系列(8) - 使用自定义标记mark

简介: Pytest系列(8) - 使用自定义标记mark

如果你还想从头学起Pytest,可以看看这个系列的文章哦!

https://www.cnblogs.com/poloyy/category/1690628.html

 

前言


  • pytest 可以支持自定义标记,自定义标记可以把一个 web 项目划分多个模块,然后指定模块名称执行
  • 譬如我可以标明哪些用例是window下执行的,哪些用例是mac下执行的,在运行代码时候指定mark即可

 

上代码


#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
__title__  = 
__Time__   = 2020/4/9 19:32
__Author__ = 小菠萝测试笔记
__Blog__   = https://www.cnblogs.com/poloyy/
"""
import pytest
@pytest.mark.weibo
def test_weibo():
    print("测试微博")
@pytest.mark.toutiao
def test_toutiao():
    print("测试头条")
@pytest.mark.toutiao
def test_toutiao1():
    print("再次测试头条")
@pytest.mark.xinlang
class TestClass:
    def test_method(self):
        print("测试新浪")
def testnoMark():
    print("没有标记测试")


cmd敲运行命令

pytest -s -m weibo 08_mark.py

 

执行结果

image.png


如何避免warnings

  • 创建一个pytest.ini文件(后续详解)
  • 加上自定义mark,如下图
  • 注意:pytest.ini需要和运行的测试用例同一个目录,或在根目录下作用于全局

image.png


如果不想标记weibo的用例,我们直接取反即可

pytest -s -m "not weibo" 08_mark.py

image.png


如果想执行多个自定义标记的用例

pytest -s -m "toutiao or weibo" 08_mark.py

image.png

相关文章
|
2月前
<span>标记
<span>标记。
14 0
|
6月前
|
测试技术 iOS开发
pytest Mark标记测试用例
使用`pytest.mark`进行测试用例分组和筛选,如`@pytest.mark.webtest`。通过`pytest -m`参数执行特定标记的用例,例如`pytest -s test_command_param.py -m webtest`。同时,pytest支持内置的skip、skipif和xfail功能来管理特殊用例:skip始终跳过,skipif条件满足时跳过,xfail则标记预期失败的测试。
|
测试技术
Pytest-mark标记的其他方法
Pytest-mark标记的其他方法
45 0
|
测试技术
13-pytest-自定义mark标记
13-pytest-自定义mark标记
|
测试技术
14-pytest-标记失败xfail使用
14-pytest-标记失败xfail使用
|
测试技术
21-pytest-severity标记用例优先级
21-pytest-severity标记用例优先级
|
移动开发 测试技术
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
122 0
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
|
测试技术
pytest学习和使用11-Pytest如何使用自定义标记mark?
pytest学习和使用11-Pytest如何使用自定义标记mark?
94 0
pytest学习和使用11-Pytest如何使用自定义标记mark?
|
Go Python
CSP 202203-1 未初始化警告 python 标记数组
CSP 202203-1 未初始化警告 python 标记数组
CSP 202203-1 未初始化警告 python 标记数组