简介:场景假设 - 当运行pytest完成后,需要针对运行的结果进行即时的反馈,打印 PASS 或者 FAIL,及其运行失败的原因,最后将结果推送给消息机器人。
分析源码:
pytest.main()的执行结果为枚举,依次为以下6种情况。
@final
class ExitCode(enum.IntEnum):
#: Tests passed.
OK = 0
#: Tests failed.
TESTS_FAILED = 1
#: pytest was interrupted.
INTERRUPTED = 2
#: An internal error got in the way.
INTERNAL_ERROR = 3
#: pytest was misused.
USAGE_ERROR = 4
#: pytest couldn't find tests.
NO_TESTS_COLLECTED = 5
根据结果进行判断输出,使用艺术字模块打印 PASS 或者 FAIL即可。
案例源码:
if __name__ == "__main__":
# step-1:use pytest run test_case
result = pytest.main(["-s", "test_case/test_demo.py", "-n=3", "--alluredir", "./report"])
f = Figlet(font='slant')
if result == 0:
print(Fore.GREEN + Back.BLACK + Style.BRIGHT + f.renderText('PASS'))
elif result == 1:
print(Fore.RED + Back.BLACK + Style.BRIGHT + f.renderText('FAIL'))
else:
pass
# step-2:auto report json data,zip to allure-html
os.system("allure serve report")
# os.popen("allure serve report")
requirements.txt
pytest
colorama
pyfiglet
pytest-html
pytest-xdist
allure-pytest
pytest-repeat
pytest-assume
pytest-rerunfailures
test_case/test_demo.py
class TestDemo(unittest.TestCase):
def test_01(self):
time.sleep(0.1)
print('测试用例1执行')
def test_02(self):
time.sleep(0.1)
print('测试用例2执行')
def test_03(self):
time.sleep(0.1)
print('测试用例3执行')
运行结果:
即:根据pytest的运行结果,控制台输出打印PASS或者FAIL,并显示allure报告,推送机器人(略),详见前一篇攻略。
行动吧,在路上总比一直观望的要好,未来的你肯定会感 谢现在拼搏的自己!如果想学习提升找不到资料,没人答疑解惑时,请及时加入扣群: 320231853,里面有各种软件测试+开发资料和技术可以一起交流学习哦。
最后感谢每一个认真阅读我文章的人,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:
这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你!