Documentation fixes

This commit is contained in:
Jürgen Edelbluth 2023-07-01 16:45:10 +02:00
parent fcea9e7349
commit 9c5d28a58c
Signed by: jed
GPG Key ID: 6DEAEDD5CDB646DF
2 changed files with 15 additions and 3 deletions

View File

@ -12,7 +12,7 @@ A pytest plugin to parametrize data-driven tests by CSV files.
## Requirements
- Python 3.8, 3.9 or 3.10, 3.11
- Python 3.8, 3.9, 3.10, 3.11
- pytest >= 7.4
There's no operating system dependent code in this plugin, so it should run anywhere where pytest runs.

View File

@ -5,7 +5,7 @@ recommended.
The minimum requirements are:
- Python >= 3.8
- Python >= 3.8, < 3.12
- Pytest >= 7.4
The plugin should run anywhere where these two things can be used.
@ -25,9 +25,21 @@ pip install --extra-index-url https://git.codebau.dev/api/packages/pytest-plugin
## Install via `poetry`
```bash
poetry add --dev pytest_csv_params
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):
```bash
poetry source add --priority=explicit codebau_pytest_plugins https://git.codebau.dev/api/packages/pytest-plugins/pypi/simple
```
- Install the package:
```bash
poetry add --source codebau_pytest_plugins --group dev pytest_csv_params
```
For more information about `poetry`, visit [python-poetry.org](https://python-poetry.org/)
## For development