features/test/python/install_additional_python.sh
Edmundo Gonzalez 520a4abc40
Python version 3.11 (#237)
* Adding 3.11 option

* Updating tests.
2022-10-25 16:07:05 -07:00

16 lines
519 B
Bash

#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "python version 3.11 installed as default" python --version | grep 3.11
check "python3 version 3.11 installed as default" python3 --version | grep 3.11
check "python version 3.10.5 installed" ls -l /usr/local/python | 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