天天看点

pytest与allure兼容问题

 module 'allure' has no attribute 'severity_level'

pytest与allure兼容问题

出现上述问题执行:

pip show pytest --version

pytest与allure兼容问题

若版本大于5.0,则需执行

pip uninstall pytest-allure-adaptor

pip install allure-pytest

原有:pytest-allure-adaptor兼容pytest版本<5.0;而allure-pytest兼容pytest版本>5.0

继续阅读