Skip to content

Installation

Requirements

  • Python 3.9 or higher
  • pytest 7.0.0 or higher

Install from PyPI

pip install pytest-uuid
uv add pytest-uuid
poetry add pytest-uuid
pdm add pytest-uuid

Install from Source

git clone https://github.com/CaptainDriftwood/pytest-uuid.git
cd pytest-uuid
pip install -e .

Verify Installation

After installation, verify that the plugin is registered with pytest:

pytest --co -q

You should see pytest_uuid in the list of plugins, or you can check directly:

python -c "import pytest_uuid; print(pytest_uuid.__version__)"

Next Steps

Head to the Quick Start guide to learn how to use pytest-uuid in your tests.