pytest-md is a pytest plugin designed for generating Markdown reports from pytest test results. It is currently at version 0.2.0 and receives updates with a moderate release cadence, indicating active maintenance.
pip install pytest-mdVerified import paths — ran on the pinned version, not inferred.
After installing `pytest-md`, create some pytest tests. To generate a Markdown report, simply run pytest from your terminal with the `--md` flag, specifying the desired output file name. The report will be generated in the specified file.
Review generated reports from version 0.2.0 to ensure compatibility with any downstream parsing or reporting tools you use.
Ensure the plugin is installed (`pip install pytest-md`) and then invoke pytest with the relevant command-line flags. Consult the official documentation for available options.
Carefully check the plugin name and documentation (`pytest-md` vs. `pytest-md-report`) to confirm you are using the intended tool.
If you want emoji support, run `pip install pytest-emoji` alongside `pytest-md`, and use the `--emoji` flag with pytest (e.g., `pytest --emoji --md report.md`).