diff options
Diffstat (limited to 'test/python/install_additional_python.sh')
-rw-r--r-- | test/python/install_additional_python.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/python/install_additional_python.sh b/test/python/install_additional_python.sh new file mode 100644 index 0000000..b0393d3 --- /dev/null +++ b/test/python/install_additional_python.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +check "python version 3.10.5 installed as default" python --version | grep 3.10.5 +check "python3 version 3.10.5 installed as default" python3 --version | grep 3.10.5 +check "python version 3.8.13 installed" ls -l /usr/local/python | grep 3.8.13 +check "python version 3.9.13 installed" ls -l /usr/local/python | grep 3.9.13 + +# Report result +reportResults |