features/test-scenarios/install_additional_python.sh
Samruddhi Khandale 7f551f8c2f
Python: Install additional versions (#58)
* additional install

* update test

* nit

* fix test

Co-authored-by: Josh Spicer <joshspicer@github.com>
2022-07-01 14:51:06 -04:00

15 lines
448 B
Bash

#!/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