1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2024-12-25 01:26:13 +01:00

Do what we can without -r

This commit is contained in:
Miro Hrončok 2019-07-17 18:59:50 +02:00
parent c9fe58c8eb
commit e5e6ae06c3
2 changed files with 71 additions and 15 deletions

View File

@ -28,27 +28,28 @@ def tox_configure(config):
if config.option.print_deps_only: if config.option.print_deps_only:
config.skipsdist = True config.skipsdist = True
elif config.option.current_env: elif config.option.current_env:
config.option.recreate = True
config.skipsdist = True config.skipsdist = True
for testenv in config.envconfigs: for testenv in config.envconfigs:
config.envconfigs[testenv].whitelist_externals = "*" config.envconfigs[testenv].whitelist_externals = "*"
return config return config
class InterpreterMismatch(tox.exception.InterpreterNotFound): class InterpreterMismatch(tox.exception.InterpreterNotFound):
"""Interpreter version in current env does not match requested version""" """Interpreter version in current env does not match requested version"""
@tox.hookimpl @tox.hookimpl
def tox_testenv_create(venv, action): def tox_testenv_create(venv, action):
"""We don't create anything""" """We create a fake virtualenv with just the symbolic link"""
config = venv.envconfig.config config = venv.envconfig.config
if config.option.current_env or config.option.print_deps_only: if config.option.current_env or config.option.print_deps_only:
version_info = venv.envconfig.python_info.version_info version_info = venv.envconfig.python_info.version_info
if version_info[:2] != sys.version_info[:2]: if version_info[:2] != sys.version_info[:2]:
raise InterpreterMismatch( raise InterpreterMismatch(
f'tox_current_env: interpreter versions do not match:\n' f"tox_current_env: interpreter versions do not match:\n"
+ f' in current env: {tuple(sys.version_info)}\n' + f" in current env: {tuple(sys.version_info)}\n"
+ f' requested: {version_info}', + f" requested: {version_info}"
) )
# Make sure the `python` command on path is sys.executable. # Make sure the `python` command on path is sys.executable.
@ -66,17 +67,56 @@ def tox_testenv_create(venv, action):
return None # let tox handle the rest return None # let tox handle the rest
def _python_activate_exists(venv):
python = venv.envconfig.get_envpython()
bindir = os.path.dirname(python)
activate = os.path.join(bindir, "activate")
return os.path.exists(python), os.path.exists(activate)
def is_current_env_link(venv):
python, activate = _python_activate_exists(venv)
return python and not activate
def is_proper_venv(venv):
python, activate = _python_activate_exists(venv)
return python and activate
def unsupported_raise(config, venv):
if not config.option.recreate:
if not (
config.option.current_env or config.option.print_deps_only
) and is_current_env_link(venv):
raise tox.exception.ConfigError(
"Regular tox run after --current-env or --print-deps-only tox run is not supported without --recreate (-r)."
)
elif is_proper_venv(venv):
if config.option.current_env:
raise tox.exception.ConfigError(
"--current-env after regular tox run is not supported without --recreate (-r)."
)
elif config.option.print_deps_only:
raise tox.exception.ConfigError(
"--print-deps-only after regular tox run is not supported without --recreate (-r)."
)
@tox.hookimpl @tox.hookimpl
def tox_testenv_install_deps(venv, action): def tox_testenv_install_deps(venv, action):
"""We don't install anything""" """We don't install anything"""
config = venv.envconfig.config config = venv.envconfig.config
unsupported_raise(config, venv)
if config.option.current_env or config.option.print_deps_only: if config.option.current_env or config.option.print_deps_only:
return True return True
@tox.hookimpl @tox.hookimpl
def tox_runtest(venv, redirect): def tox_runtest(venv, redirect):
if venv.envconfig.config.option.print_deps_only: config = venv.envconfig.config
unsupported_raise(config, venv)
if config.option.print_deps_only:
for dependency in venv.get_resolved_dependencies(): for dependency in venv.get_resolved_dependencies():
print(dependency) print(dependency)
return True return True

View File

@ -60,17 +60,33 @@ def test_regular_run():
assert "congratulations" in result.stdout assert "congratulations" in result.stdout
def test_regular_after_current(): def test_regular_after_current_is_not_supported():
tox("-e", NATIVE_TOXENV, "--current-env") result = tox("-e", NATIVE_TOXENV, "--current-env")
result = tox("-e", NATIVE_TOXENV, prune=False) assert result.stdout.splitlines()[0] == NATIVE_EXECUTABLE
assert f"/.tox/{NATIVE_TOXENV}/bin/python" in result.stdout.splitlines()[0] result = tox("-e", NATIVE_TOXENV, prune=False, check=False)
assert result.returncode > 0
assert "not supported" in result.stderr
def test_regular_recreate_after_current(): def test_regular_recreate_after_current():
tox("-e", NATIVE_TOXENV, "--current-env") result = tox("-e", NATIVE_TOXENV, "--current-env")
tox("-re", NATIVE_TOXENV, prune=False) assert result.stdout.splitlines()[0] == NATIVE_EXECUTABLE
result = tox("-re", NATIVE_TOXENV, prune=False)
assert f"/.tox/{NATIVE_TOXENV}/bin/python" in result.stdout
assert "not supported" not in result.stderr
def test_current_after_regular(): @pytest.mark.parametrize("option", ["--current-env", "--print-deps-only"])
tox("-e", NATIVE_TOXENV) def test_current_after_regular_is_not_supported(option):
tox("-e", NATIVE_TOXENV, "--current-env", prune=False) result = tox("-e", NATIVE_TOXENV)
assert f"/.tox/{NATIVE_TOXENV}/bin/python" in result.stdout
result = tox("-e", NATIVE_TOXENV, option, prune=False, check=False)
assert result.returncode > 0
assert "not supported" in result.stderr
def test_current_recreate_after_regular():
result = tox("-e", NATIVE_TOXENV)
assert f"/.tox/{NATIVE_TOXENV}/bin/python" in result.stdout
result = tox("-re", NATIVE_TOXENV, "--current-env", prune=False)
assert result.stdout.splitlines()[0] == NATIVE_EXECUTABLE