diff --git a/.github/workflows/integration-test-migrate-python-macos-pyenv.yml b/.github/workflows/integration-test-migrate-python-macos-pyenv.yml index 4520e21..b6a63b7 100644 --- a/.github/workflows/integration-test-migrate-python-macos-pyenv.yml +++ b/.github/workflows/integration-test-migrate-python-macos-pyenv.yml @@ -49,7 +49,8 @@ jobs: - name: "Migrate pyenv Python to dtvem" run: | echo "=== Running migrate detection ===" - echo -e "1\n0\nn\n" | ./dist/dtvem migrate python || true + # Select "all" to migrate all detected versions + echo -e "all\n0\nn\n" | ./dist/dtvem migrate python || true echo "" echo "=== Verifying migration ===" ./dist/dtvem list python diff --git a/.github/workflows/integration-test-migrate-python-macos-system.yml b/.github/workflows/integration-test-migrate-python-macos-system.yml index 01f4796..070875d 100644 --- a/.github/workflows/integration-test-migrate-python-macos-system.yml +++ b/.github/workflows/integration-test-migrate-python-macos-system.yml @@ -44,7 +44,8 @@ jobs: - name: "Migrate system Python to dtvem" run: | echo "=== Running migrate detection ===" - echo -e "1\n0\n" | ./dist/dtvem migrate python || true + # Select "all" to migrate all detected versions + echo -e "all\n0\n" | ./dist/dtvem migrate python || true echo "" echo "=== Verifying migration ===" ./dist/dtvem list python diff --git a/.github/workflows/integration-test-migrate-python-ubuntu-pyenv.yml b/.github/workflows/integration-test-migrate-python-ubuntu-pyenv.yml index 168985b..85357c8 100644 --- a/.github/workflows/integration-test-migrate-python-ubuntu-pyenv.yml +++ b/.github/workflows/integration-test-migrate-python-ubuntu-pyenv.yml @@ -58,7 +58,8 @@ jobs: - name: "Migrate pyenv Python to dtvem" run: | echo "=== Running migrate detection ===" - echo -e "1\n0\nn\n" | ./dist/dtvem migrate python || true + # Select "all" to migrate all detected versions + echo -e "all\n0\nn\n" | ./dist/dtvem migrate python || true echo "" echo "=== Verifying migration ===" ./dist/dtvem list python diff --git a/.github/workflows/integration-test-migrate-python-ubuntu-system.yml b/.github/workflows/integration-test-migrate-python-ubuntu-system.yml index d0a4c7e..120fbac 100644 --- a/.github/workflows/integration-test-migrate-python-ubuntu-system.yml +++ b/.github/workflows/integration-test-migrate-python-ubuntu-system.yml @@ -45,7 +45,8 @@ jobs: - name: "Migrate system Python to dtvem" run: | echo "=== Running migrate detection ===" - echo -e "1\n0\n" | ./dist/dtvem migrate python || true + # Select "all" to migrate all detected versions + echo -e "all\n0\n" | ./dist/dtvem migrate python || true echo "" echo "=== Verifying migration ===" ./dist/dtvem list python diff --git a/.github/workflows/integration-test-migrate-python-windows-pyenv.yml b/.github/workflows/integration-test-migrate-python-windows-pyenv.yml index 15fc111..f0f9c1f 100644 --- a/.github/workflows/integration-test-migrate-python-windows-pyenv.yml +++ b/.github/workflows/integration-test-migrate-python-windows-pyenv.yml @@ -61,7 +61,8 @@ jobs: shell: bash run: | echo "=== Running migrate detection ===" - echo -e "1\n0\nn\n" | ./dist/dtvem.exe migrate python || true + # Select "all" to migrate all detected versions + echo -e "all\n0\nn\n" | ./dist/dtvem.exe migrate python || true echo "" echo "=== Verifying migration ===" ./dist/dtvem.exe list python diff --git a/.github/workflows/integration-test-migrate-python-windows-system.yml b/.github/workflows/integration-test-migrate-python-windows-system.yml index c1a3985..8e6de0b 100644 --- a/.github/workflows/integration-test-migrate-python-windows-system.yml +++ b/.github/workflows/integration-test-migrate-python-windows-system.yml @@ -58,7 +58,8 @@ jobs: shell: bash run: | echo "=== Running migrate detection ===" - echo -e "1\n0\n" | ./dist/dtvem.exe migrate python || true + # Select "all" to migrate all detected versions + echo -e "all\n0\n" | ./dist/dtvem.exe migrate python || true echo "" echo "=== Verifying migration ===" ./dist/dtvem.exe list python