2024-08-13 17:06:12 +00:00
|
|
|
"""Add required env configuration options to the tox INI file"""
|
2024-08-16 18:27:46 +00:00
|
|
|
|
2024-08-13 17:06:12 +00:00
|
|
|
from typing import List
|
|
|
|
|
2024-08-20 17:56:17 +00:00
|
|
|
import tox.config.sets
|
|
|
|
import tox.plugin
|
2024-08-13 17:06:12 +00:00
|
|
|
|
|
|
|
|
2024-08-15 18:41:34 +00:00
|
|
|
# pylint: disable=missing-function-docstring
|
2024-08-20 17:56:17 +00:00
|
|
|
@tox.plugin.impl
|
2024-08-15 18:41:34 +00:00
|
|
|
def tox_add_env_config(
|
2024-08-20 17:56:17 +00:00
|
|
|
env_conf: tox.config.sets.EnvConfigSet,
|
2024-08-15 18:41:34 +00:00
|
|
|
):
|
2024-08-13 17:06:12 +00:00
|
|
|
env_conf.add_config(
|
|
|
|
"poetry_dep_groups",
|
|
|
|
of_type=List[str],
|
|
|
|
default=[],
|
|
|
|
desc="List of Poetry dependency groups to install to the environment",
|
|
|
|
)
|
|
|
|
|
|
|
|
env_conf.add_config(
|
|
|
|
"install_project_deps",
|
|
|
|
of_type=bool,
|
|
|
|
default=True,
|
|
|
|
desc="Automatically install all Poetry primary dependencies to the environment",
|
|
|
|
)
|
|
|
|
|
|
|
|
env_conf.add_config(
|
|
|
|
"require_locked_deps",
|
|
|
|
of_type=bool,
|
|
|
|
default=False,
|
|
|
|
desc="Require all dependencies in the environment be installed using the Poetry lockfile",
|
|
|
|
)
|
|
|
|
|
|
|
|
env_conf.add_config(
|
|
|
|
"require_poetry",
|
|
|
|
of_type=bool,
|
|
|
|
default=False,
|
|
|
|
desc="Trigger a failure if Poetry is not available to Tox",
|
|
|
|
)
|
|
|
|
|
|
|
|
env_conf.add_config(
|
|
|
|
"locked_deps",
|
|
|
|
of_type=List[str],
|
|
|
|
default=[],
|
|
|
|
desc="List of locked dependencies to install to the environment using the Poetry lockfile",
|
|
|
|
)
|