最近项目迁移,python2迁移到python3,遇到几个问题记录下:
1、在迁移pytest时,需要安装pytest、pytest-allure-adaptor和allure,执行完后测试报告为空的问题。
解决办法:各种尝试,最终发现是因为
pytest和allure的版本不兼容导致的,
对于Python模块默认都是用pip3 install xxx安装的最新的版本。后来pip3 install pytest==3.2.3、pytest-allure-adaptor==1.7.8与allure的2.1.1版本匹配才得以解决。
注意:这里我刚开始用的是allure-pytest,但是这个版本兼容问题更多,而且我们是用Jenkins集成的,所以allure的版本是固定的,只能舍弃allure-pytest,而采用pytest和pytest-allure-adaptor。
2、生成报告后如果想在execution中显示test body信息,那么在启动执行命令中就需要去掉-s -q参数,直接用pytest ${case_dirs[@]} --alluredir ${report}即可;
如图:
阅读(354434) | 评论(0) | 转发(0) |