From ed9ff818162d669f2a5fb2130cf41af1681b913e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 3 Nov 2020 12:19:53 +0100 Subject: [PATCH] Hotfix: Don't install any deps when --print-extras-to is used --- src/tox_current_env/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tox_current_env/hooks.py b/src/tox_current_env/hooks.py index b1c6a29..d1ff45f 100644 --- a/src/tox_current_env/hooks.py +++ b/src/tox_current_env/hooks.py @@ -190,7 +190,7 @@ def tox_testenv_install_deps(venv, action): """We don't install anything""" config = venv.envconfig.config unsupported_raise(config, venv) - if config.option.current_env or config.option.print_deps_to: + if config.option.current_env or config.option.print_deps_to or config.option.print_extras_to: return True