aboutsummaryrefslogtreecommitdiff
path: root/test-scenarios/install_os_provided_python.sh
blob: 4dba59da24496f9c6555284524f487737e315eb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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