--- tox-4.25.0/tests/test_version.py.orig +++ tox-4.25.0/tests/test_version.py @@ -11,11 +11,14 @@ from tox.pytest import ToxProjectCreator +import pytest + def test_version() -> None: assert __version__ +@pytest.mark.skip(reason="tox-current-env is always installed") def test_version_without_plugin(tox_project: ToxProjectCreator) -> None: outcome = tox_project({"tox.ini": ""}).run("--version") outcome.assert_success() --- tox-4.25.0/tests/config/cli/test_cli_env_var.py.orig +++ tox-4.25.0/tests/config/cli/test_cli_env_var.py @@ -68,6 +68,11 @@ "labels": [], "skip_env": "", "list_dependencies": is_ci(), + "assert_config": False, # tox-current-env + "current_env": False, # tox-current-env + "print_dependency_groups_to": False, # tox-current-env + "print_deps_to": False, # tox-current-env + "print_extras_to": False, # tox-current-env } @@ -129,6 +134,11 @@ "exit_and_dump_after": 0, "skip_env": "", "list_dependencies": is_ci(), + "assert_config": False, # tox-current-env + "current_env": False, # tox-current-env + "print_dependency_groups_to": False, # tox-current-env + "print_deps_to": False, # tox-current-env + "print_extras_to": False, # tox-current-env } assert options.parsed.verbosity == 4 assert options.cmd_handlers == core_handlers --- tox-4.25.0/tests/config/cli/test_cli_ini.py.orig +++ tox-4.25.0/tests/config/cli/test_cli_ini.py @@ -57,6 +57,11 @@ "exit_and_dump_after": 0, "skip_env": "", "list_dependencies": is_ci(), + "assert_config": False, # tox-current-env + "current_env": False, # tox-current-env + "print_dependency_groups_to": False, # tox-current-env + "print_deps_to": False, # tox-current-env + "print_extras_to": False, # tox-current-env } @@ -232,6 +237,11 @@ "exit_and_dump_after": 0, "skip_env": "", "list_dependencies": is_ci(), + "assert_config": False, # tox-current-env + "current_env": False, # tox-current-env + "print_dependency_groups_to": False, # tox-current-env + "print_deps_to": False, # tox-current-env + "print_extras_to": False, # tox-current-env } assert options.parsed.verbosity == 4 assert options.cmd_handlers == core_handlers