Error After Installation Of Allure Pytest Adaptor
I am trying to configure Allure (2.6.0) with Pytest (3.6xx) on a Windows 8 box. I am able to run pytest and generate jUnit xml report file which later I can pass to allure (allure
Solution 1:
allure-python-commons is incompatible with pytest-allure-adaptor. You need to remove old plugin and reinstall allure-pytest and allure-python-commons.
Solution 2:
Your pytest-allure-adaptor is incompatible. Only thing is required to run this pip command if you have python2-
pip uninstall pytest-allure-adaptor
else run this command if you have python3 -
pip3 uninstall pytest-allure-adaptor
Post a Comment for "Error After Installation Of Allure Pytest Adaptor"