pytest: error: unrecognized arguments: --alluredir
pytest: error: unrecognized arguments: --alluredir
(PYTEST_test_programs) E:\PYTEST_test_programs\Allure_report1>pytest test_file01.py --alluredir="C:\Users\Admin\Desktop\Resumes\reports"
ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...]
pytest: error: unrecognized arguments: --alluredir=C:\Users\Admin\Desktop\Resumes\reports
inifile: None
rootdir: E:\PYTEST_test_programs\Allure_report1
我一点也不熟悉 allure 框架,但听起来您好像缺少提供该命令行参数的 allure-pytest
插件
您可能需要 pip install allure-pytest
在您尝试的任何环境中 运行 在
中进行测试
检查您是否已经通过 pip
安装了 allure-pytest
:
pip list
如果没有,请使用以下方式安装:
pip install allure-pytest
(PYTEST_test_programs) E:\PYTEST_test_programs\Allure_report1>pytest test_file01.py --alluredir="C:\Users\Admin\Desktop\Resumes\reports"
ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...]
pytest: error: unrecognized arguments: --alluredir=C:\Users\Admin\Desktop\Resumes\reports
inifile: None
rootdir: E:\PYTEST_test_programs\Allure_report1
我一点也不熟悉 allure 框架,但听起来您好像缺少提供该命令行参数的 allure-pytest
插件
您可能需要 pip install allure-pytest
在您尝试的任何环境中 运行 在
检查您是否已经通过 pip
安装了 allure-pytest
:
pip list
如果没有,请使用以下方式安装:
pip install allure-pytest