Documentation fixes
This commit is contained in:
parent
4eeeef5353
commit
de8cb8f858
|
@ -93,7 +93,7 @@ and the **documentation**.
|
|||
|
||||
### Code
|
||||
|
||||
The publishing is done managed with `poetry`. The complete build and deploy configuration takes place in the
|
||||
The building and deployment is managed by `poetry`. The complete build and deploy configuration takes place in the
|
||||
`pyproject.toml`. Besides the standard configuration in section `[tool.poetry]`, additional URLs are defined in section
|
||||
`[tool.poetry.urls]`. As a speciality for this plugin, an entry point is defined in section
|
||||
`[tool.poetry.plugins."pytest11"]`.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "pytest-csv-params"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
description = "Pytest plugin for Test Case Parametrization with CSV files"
|
||||
authors = ["Juergen Edelbluth <csv_params@jued.de>"]
|
||||
license = "MIT"
|
||||
|
|
|
@ -16,16 +16,16 @@ check_pytest_version()
|
|||
# Basic config
|
||||
pytest_configure = _pytest_configure
|
||||
"""
|
||||
Hook in our :meth:`_ptcsvp.configure.pytest_configure` method to setup the plugin setup
|
||||
Hook our :meth:`_ptcsvp.configure.pytest_configure` method to setup the plugin setup
|
||||
"""
|
||||
|
||||
pytest_unconfigure = _pytest_unconfigure
|
||||
"""
|
||||
Hook in our :meth:`_ptcsvp.configure.pytest_unconfigure` method to setup the plugin teardown
|
||||
Hook our :meth:`_ptcsvp.configure.pytest_unconfigure` method to setup the plugin teardown
|
||||
"""
|
||||
|
||||
# Command Line Arguments
|
||||
pytest_addoption = _pytest_addoption
|
||||
"""
|
||||
Hook in our :meth:`_ptcsvp.cmdline.pytest_addoption` method to setup our command line arguments
|
||||
Hook our :meth:`_ptcsvp.cmdline.pytest_addoption` method to setup our command line arguments
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue