Installation¶
There are serveral ways to install the package. The pip and the poetry ways are recommended.
The minimum requirements are:
Python >= 3.9, < 3.14
Pytest >= 8.3
The plugin should run anywhere where these two things can be used.
Install via pip¶
pip install pytest-csv-params
Alternatively, you can use the codebau.dev package repository:
pip install --extra-index-url https://git.codebau.dev/api/packages/pytest-plugins/pypi/simple pytest-csv-params
Install via poetry¶
poetry add --group dev pytest-csv-params
Alternatively, you can use the codebau.dev package repository with poetry also:
Enable the repository as an explicit source (you should only need to do this once):
poetry source add --priority=explicit codebau_pytest_plugins https://git.codebau.dev/api/packages/pytest-plugins/pypi/simple
Install the package:
poetry add --source codebau_pytest_plugins --group dev pytest-csv-params
For more information about poetry, visit python-poetry.org
For development¶
Please checkout the repository from git.codebau.dev.