diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-23 23:13:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 23:13:33 +0300 |
commit | 84f4996643b84c6f3dcd5c3edc72ae176dceaf65 (patch) | |
tree | 74b7eddfc24ae22409baf5f3e4be28ce52d5881a /test-scenarios | |
parent | 0cafeee86296b9f19e6425055e0c4037eff41985 (diff) |
Fix bug - Python: Error installing os-provided python (#112)
* python: fix bug
* bump versions
Diffstat (limited to 'test-scenarios')
-rw-r--r-- | test-scenarios/install_os_provided_python.sh | 16 | ||||
-rw-r--r-- | test-scenarios/scenarios.json | 9 |
2 files changed, 24 insertions, 1 deletions
diff --git a/test-scenarios/install_os_provided_python.sh b/test-scenarios/install_os_provided_python.sh new file mode 100644 index 0000000..4dba59d --- /dev/null +++ b/test-scenarios/install_os_provided_python.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +check "python3 is installed" python3 --version +check "python is installed" python --version +check "pip is installed" pip --version +check "pip is installed" pip3 --version + +check "node is installed" node --version + +# Report result +reportResults diff --git a/test-scenarios/scenarios.json b/test-scenarios/scenarios.json index c7ec8af..ddf15d0 100644 --- a/test-scenarios/scenarios.json +++ b/test-scenarios/scenarios.json @@ -1,4 +1,11 @@ { + "install_os_provided_python": { + "image": "mcr.microsoft.com/devcontainers/base:0-bullseye", + "features": { + "node": "latest", + "python": "os-provided" + } + }, "install_gradle_and_maven": { "image": "ubuntu:focal", "features": { @@ -28,7 +35,7 @@ } }, "install_jupyterlab": { - "image": "mcr.microsoft.com/vscode/devcontainers/base:focal", + "image": "mcr.microsoft.com/devcontainers/base:focal", "remoteUser": "vscode", "features": { "common-utils": { |