pytest实现多种调用方式
作者:白菜兔
pytest是一个非常成熟的全功能的Python测试框架,本文主要介绍了pytest多种调用方式,具有一定的参考价值,感兴趣的可以了解一下
官方用例
# content of myivoke.py
import sys
import pytest
class MyPlugin:
def pytest_sessionfinish(self):
print("*** test run reporting finishing")
if __name__ == "__main__":
sys.exit(pytest.main(["-qq"],plugins=[MyPlugin()]))
# content of other_invoke.py
import pytest
if __name__ == "__main__":
retcode = pytest.main()
print(retcode)
# content of test_invok_01.py
def test_invok_01():
print("test_invok_01 was invoked")
assert 0
解读与实操
- 通过pytest命令行调用

- 通过python命令行调用

- python代码中调用


到此这篇关于pytest实现多种调用方式的文章就介绍到这了,更多相关pytest 调用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
