本帖最后由 Test_dada 于 2020-11-30 16:19 编辑
问题:在Unitest框架执行用例时,会遇到用例执行顺序不是由上至下的,而是根据字母、数字排序来决定执行顺序的
解决方法1:TestSuite套件添加用例,会根据添加顺序执行
方法2:修改用例名,test_01_xxx、test_02_xxx
方法3:先pip安装pytest、pytest-ordering库;
pytest库下的mark方法,语法如下;
@pytest.mark.run(order=x)
例子1:函数执行顺序定义
[Python] 纯文本查看 复制代码 import pytest
@pytest.mark.run(order=3)
def test_01():
print("--------test01")
assert 1
@pytest.mark.run(order=-1)
def test02():
print("---------test02")
assert 0
@pytest.mark.run(order=1)
def test_03():
print("----------test03")
@pytest.mark.run(order=2)
def test04():
print("------------test04")
if __name__ == '__main__':
pytest.main(['-s', 'test1.py'])
例子2:Unitest框架用例执行顺序
[Python] 纯文本查看 复制代码 import pytest
import unittest
class Add_D(unittest.TestCase):
def setUp(self):
print('========setUp')
def tearDown(self):
print('========tearDown')
@pytest.mark.run(order=3)
def test_01(self):
print("--------test01")
assert 1
@pytest.mark.run(order=-1)
def test02(self):
print("---------test02")
assert 0
@pytest.mark.run(order=1)
def test_03(self):
print("----------test03")
@pytest.mark.run(order=2)
def test04(self):
print("------------test04")
if __name__ == '__main__':
# '-s'显示程序中的print/logging输出
# ./test1.py 当前文件路径
# ./test1.py::Add_D 指定要运行的类
# ./test1.py::Add_D::test04 指定要运行的类下的用例
pytest.main(['-s','./test1.py::Add_D::test04'])
参考资料:https://blog.csdn.net/weixin_44006041/article/details/107934174 |