1、生成junitxml报告:pytest --junitxml=path [测试用例]
Windows:
绝对路径:
pytest --junitxml=E:\demo102\...\xml E:\demo102\...\test_calc.py
相对路径:
pytest --junitxml=.\xml\log.xml .\test_yield.py
Mac:
绝对路径:
pytest --junitxml=/Users/.../xml /Users/.../test_yield.py
相对路径:
pytest --junitxml=./xml/log.xml ./test_yield.py
网友评论