Open1
allure-pytestとallure-pytest-bddをどちらもインストールしておくと実行時にエラーになる
allureでレポートpytestのレポート出力しようとしたところ以下のエラー表示。
allure-pytestとallure-pytest-bddが競合している?
ValueError: option names {'--alluredir'} already added
以下のようにコマンドを記載することで解決。
・allure-pytestを使用したい場合
pytest -p no:allure_pytest_bdd --alluredir=test
・allure-pytest-bddを使用したい場合
pytest -p no:allure_pytest --alluredir=test
参考:https://github.com/allure-framework/allure-python/issues/486