Pytest运行多个py文件

创建两个test_XX.py文件分别测试桌面和服务器

test_desktop.py

import pytest


@pytest.mark.Desktop_Professional
@pytest.mark.特性1
def test_1():
    print('执行了桌面专业版特性1用例')
    assert True


@pytest.mark.Desktop_Professional
@pytest.mark.特性2
def test_2():
    print('执行了桌面专业版特性2用例')
    assert False
test_server.py

import pytest


@pytest.mark.Server_e
@pytest.mark.特性1
def test_3():
    print('执行了服务器欧拉版特性3用例')
    assert False

我们现在需要测试桌面版,终端输入:

pytest -v   test_desktop.py

测试桌面版和服务器,终端输入:

pytest -v test_server.py  test_desktop.py

 

上一篇:python爬虫——scrapy使用笔记(超详细版)


下一篇:cobra代码审计