PyCharm安装哪些Allure第三方库
时间: 2024-01-05 18:56:10 浏览: 72
要在PyCharm中使用Allure报告,您需要安装以下第三方库:
1. pytest-allure-adaptor:用于将pytest测试结果转换为Allure报告格式。
2. allure-pytest:用于在Pytest中使用Allure报告。
您可以通过以下命令在终端中安装这些库:
pip install pytest-allure-adaptor allure-pytest
或者,您可以在PyCharm中使用内置的包管理器来安装它们。打开PyCharm,转到File > Settings > Project: <project_name> > Python Interpreter。在右侧的搜索栏中搜索“pytest-allure-adaptor”和“allure-pytest”,然后单击“Install Package”按钮安装它们。
阅读全文