Doc Changes

This commit is contained in:
Jürgen Edelbluth 2022-08-15 18:24:08 +00:00
parent d87edb29ca
commit 4cf7d98984
Signed by: jed
GPG Key ID: 6DEAEDD5CDB646DF
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# pytest-csv-params
A pytest plugin to parametrize tests by CSV files.
A pytest plugin to parametrize data-driven tests by CSV files.
[![PyPI - Downloads](https://img.shields.io/pypi/dw/pytest-csv-params?label=PyPI%20downloads&style=for-the-badge)](https://pypi.org/project/pytest-csv-params/)
[![PyPI - Version](https://img.shields.io/pypi/v/pytest-csv-params?label=PyPI%20version&style=for-the-badge)](https://pypi.org/project/pytest-csv-params/)
@ -92,6 +92,8 @@ The default CSV format is:
- If you need a `"` in the value, use `""` (double quote)
- Fields are separated by comma (`,`)
**The first line must contain the row names. Row names must match the parameters of the test method (except for an ID column that is configured as such -- see `id_col` decorator parameter).**
#### Example CSV
```text

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-csv-params"
version = "0.2.0"
version = "0.2.1"
description = "Pytest plugin for Test Case Parametrization with CSV files"
authors = ["Juergen Edelbluth <csv_params@jued.de>"]
license = "MIT"