diff --git a/e2e/core/test_python_venv_with_go_backend_deadlock_slow b/e2e/core/test_python_venv_with_go_backend_deadlock_slow index d4037546cf..c23dcb26fc 100755 --- a/e2e/core/test_python_venv_with_go_backend_deadlock_slow +++ b/e2e/core/test_python_venv_with_go_backend_deadlock_slow @@ -5,6 +5,15 @@ # fixes https://github.com/jdx/mise/discussions/7059 set -euo pipefail export MISE_PYTHON_GITHUB_ATTESTATIONS=0 +install_timeout="${MISE_E2E_INSTALL_TIMEOUT:-180}" + +cleanup_go_cache() { + # Required to properly cleanup as go installs read-only sources + if [ -d ~/go ]; then + chmod -R +w ~/go + fi +} +trap cleanup_go_cache EXIT cat >.mise.toml <