mirror of
https://github.com/enpaul/tox-poetry-installer.git
synced 2025-01-15 08:43:29 +00:00
Update documentation for new config options
This commit is contained in:
parent
d0842456cb
commit
4261d45218
10
README.md
10
README.md
@ -151,19 +151,23 @@ commands = ...
|
|||||||
> the child environment with a different value.
|
> the child environment with a different value.
|
||||||
|
|
||||||
Alternatively, we can skip specifying all of our dependencies for a test environment in
|
Alternatively, we can skip specifying all of our dependencies for a test environment in
|
||||||
the Tox config and just install all of our Poetry dev-dependencies automatically:
|
the Tox config and install Poetry dependency groups directly:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[testenv]
|
[testenv]
|
||||||
description = Some very cool tests
|
description = Some very cool tests
|
||||||
require_locked_deps = true
|
require_locked_deps = true
|
||||||
install_dev_deps = true
|
poetry_dep_groups =
|
||||||
|
dev
|
||||||
commands = ...
|
commands = ...
|
||||||
```
|
```
|
||||||
|
|
||||||
> **Note:** Setting `install_dev_deps = true` on an environment that also installs the
|
> **Note:** Setting `poetry_dep_groups = [dev]` on an environment that also installs the
|
||||||
> project package is functionally equivalent to running `poetry install`.
|
> project package is functionally equivalent to running `poetry install`.
|
||||||
|
|
||||||
|
> **Note:** The `install_dev_deps` configuration option is deprecated. See \[Configuration
|
||||||
|
> Options\](#configuration-options\] for more information.
|
||||||
|
|
||||||
Finally, we can also install an unlocked dependency (a dependency which doesn't take its
|
Finally, we can also install an unlocked dependency (a dependency which doesn't take its
|
||||||
version from the Poetry lockfile) into the test environment alongside the locked ones. We
|
version from the Poetry lockfile) into the test environment alongside the locked ones. We
|
||||||
need to remove the `require_locked_deps = true` option, otherwise the environment will
|
need to remove the `require_locked_deps = true` option, otherwise the environment will
|
||||||
|
Loading…
Reference in New Issue
Block a user