diff options
Diffstat (limited to 'test-scenarios/install_os_provided_python.sh')
-rw-r--r-- | test-scenarios/install_os_provided_python.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test-scenarios/install_os_provided_python.sh b/test-scenarios/install_os_provided_python.sh new file mode 100644 index 0000000..4dba59d --- /dev/null +++ b/test-scenarios/install_os_provided_python.sh @@ -0,0 +1,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 |