pytest pytest-html插件配置和使用config_metadata
时间: 2023-11-23 10:53:58 浏览: 151
pytest-html插件可以生成漂亮的HTML测试报告,而config_metadata是pytest框架中的元数据,可以用来存储测试用例的一些额外信息。下面是pytest-html插件配置和使用config_metadata的方法:
1. 安装pytest-html插件:可以使用pip install pytest-html命令进行安装。
2. 在pytest.ini文件中添加如下配置:
[pytest]
addopts = --html=report.html --self-contained-html
3. 运行pytest命令,生成HTML测试报告。
4. 在测试用例中使用config_metadata存储元数据信息,例如:
def test_example(pytestconfig):
pytestconfig.metadata['author'] = 'yoyo'
pytestconfig.metadata['version'] = 'v1.0'
5. 在HTML测试报告中可以看到元数据信息。
需要注意的是,pytest-metadata插件可以用来方便地管理config_metadata,可以通过pip install pytest-metadata进行安装。同时,conftest.py文件中的代码可以用来自定义HTML测试报告的标题、摘要信息和测试结果表格。
相关问题
platform linux -- Python 3.6.8, pytest-7.0.1, pluggy-1.0.0 rootdir: /root/edap/edaptest_new, configfile: pytest.ini, testpaths: ./testcase/ plugins: allure-pytest-2.11.1, html-3.2.0, metadata-1.11.0
看起来你正在使用 Linux 操作系统,Python 版本为 3.6.8,同时使用了 pytest 测试框架,版本为 7.0.1,以及一些 pytest 插件,包括 allure-pytest-2.11.1、html-3.2.0 和 metadata-1.11.0。你的测试代码位于 `./testcase/` 目录下,并且使用了 `pytest.ini` 配置文件。
# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/
这段代码是一个常见的 Python 项目的 .gitignore 文件,用于指定哪些文件不应该被 Git 跟踪和提交到版本控制系统中。其中包含了许多常见的 Python 项目中不需要跟踪的文件和目录,例如编译文件、依赖包、日志文件、测试报告、临时文件等。这样可以避免这些文件影响项目的可维护性和可移植性。
阅读全文