diff --git a/docs/pages/developer.md b/docs/pages/developer.md index 00cc7fa..23283ef 100644 --- a/docs/pages/developer.md +++ b/docs/pages/developer.md @@ -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"]`. diff --git a/pyproject.toml b/pyproject.toml index 7491f25..2acfbfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" diff --git a/pytest_csv_params/plugin.py b/pytest_csv_params/plugin.py index 4c4eff2..cb7320f 100644 --- a/pytest_csv_params/plugin.py +++ b/pytest_csv_params/plugin.py @@ -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 """