码迷,mamicode.com
首页 > 其他好文 > 详细

pytest_按标记执行

时间:2019-09-21 19:14:10      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:http   roi   android   import   标记   执行   打印   pass   add   

import pytest
@pytest.mark.webtest
def test_send_http():
pass

@pytest.mark.apptest
def test_devide():
pass

@pytest.mark.android
def test_search():
pass

@pytest.mark.ios
def test_add():
pass

def test_plus():
pass

-m 是标记
-s 显示内部打印信息

pytest -s test_mark.py -m ‘not ios‘ 执行标记不等于ios的

pytest -s test_mark.py -m ios  只执行标记==ios的

pytest -s test_mark.py -m=ios  只执行标记==ios的

pytest_按标记执行

标签:http   roi   android   import   标记   执行   打印   pass   add   

原文地址:https://www.cnblogs.com/QaStudy/p/11563931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!