mirror of
https://github.com/enpaul/tox-poetry-installer.git
synced 2025-04-04 21:53:42 +00:00
Update require_poetry option to be config option rather than runtime
Add deprecation warning for future removal of runtime require_poetry option
This commit is contained in:
parent
1e04edef69
commit
c8d7009200
@ -56,6 +56,13 @@ def tox_addoption(parser: ToxParser):
|
|||||||
help="Require all dependencies in the environment be installed using the Poetry lockfile",
|
help="Require all dependencies in the environment be installed using the Poetry lockfile",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
parser.add_testenv_attribute(
|
||||||
|
name="require_poetry",
|
||||||
|
type="bool",
|
||||||
|
default=False,
|
||||||
|
help="Trigger a failure if Poetry is not available to Tox",
|
||||||
|
)
|
||||||
|
|
||||||
parser.add_testenv_attribute(
|
parser.add_testenv_attribute(
|
||||||
name="locked_deps",
|
name="locked_deps",
|
||||||
type="line-list",
|
type="line-list",
|
||||||
@ -75,12 +82,18 @@ def tox_testenv_install_deps(venv: ToxVirtualEnv, action: ToxAction) -> Optional
|
|||||||
:param action: Tox action object
|
:param action: Tox action object
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if venv.envconfig.config.option.require_poetry:
|
||||||
|
logger.warning(
|
||||||
|
"DEPRECATION WARNING: The '--require-poetry' runtime option is deprecated and will be "
|
||||||
|
"removed in version 1.0.0. Please update test environments that require Poetry to "
|
||||||
|
"set the 'require_poetry = true' option in tox.ini"
|
||||||
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
poetry = utilities.check_preconditions(venv, action)
|
poetry = utilities.check_preconditions(venv, action)
|
||||||
except exceptions.SkipEnvironment as err:
|
except exceptions.SkipEnvironment as err:
|
||||||
if (
|
if isinstance(err, exceptions.PoetryNotInstalledError) and (
|
||||||
isinstance(err, exceptions.PoetryNotInstalledError)
|
venv.envconfig.config.option.require_poetry or venv.envconfig.require_poetry
|
||||||
and venv.envconfig.config.option.require_poetry
|
|
||||||
):
|
):
|
||||||
venv.status = err.__class__.__name__
|
venv.status = err.__class__.__name__
|
||||||
logger.error(str(err))
|
logger.error(str(err))
|
||||||
|
Loading…
Reference in New Issue
Block a user