blob: b0393d362e44bbf94e4927d96e769f76afe9df00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|