从python捕获pytest的退出代码

2022-03-01 00:00:00 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())

相关文章