features/test-scenarios/install_os_provided_python.sh
Samruddhi Khandale 84f4996643
Fix bug - Python: Error installing os-provided python (#112)
* python: fix bug

* bump versions
2022-08-23 16:13:33 -04:00

17 lines
337 B
Bash

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