从python捕获pytest的退出代码
问题描述
运行python.main()时,任何失败的单元测试都不会向调用测试的python模块返回退出代码%1。
如上所述here,运行pytest不会引发系统退出,但是有没有办法让失败的单元测试表现相同,或者允许将代码(1)返回到调用函数?
解决方案
pytest.main()
将返回其退出代码-即an ExitCode
enum,从pytest 5.0.0开始。如果测试失败,则返回ExitCode.TESTS_FAILED
;如果所有测试均通过,则返回ExitCode.OK
。
site-packages/pytest/__main__.py
的源代码,如果使用python -m pytest
调用测试,则执行该源代码:
import pytest
if __name__ == "__main__":
raise SystemExit(pytest.main())
py.test
(或pytest
)入口点脚本基本相同
import re
import sys
from pytest import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script.pyw|.exe)?$', '', sys.argv[0])
sys.exit(main())
相关文章