python中执行pytest

python代码执行pytest

  • 使用main函数
  • 使用python -m pytest 调用pytest (jenkins持续集成用到)

python代码执行pytest-main函数

if __name__ == '__main__':
    #1、运行当前目录下所有符合规则的用例,包括子目录(test_*.py 和*_test.py)
    pytest.main()
    #2、运行test_mark1.py::test_dkej模块中的某一条用例,打印详细输出日志
    pytest.main(['test_mark1.py::test_dkej','-vs']) 
    #3、运行某个标签(自定义标记的某个标签)
    pytest.main(['test_mark1.py','-vs','-m','dkej'])

运行方式
python test_*.py