features/test/python/install_os_provided_python.sh
Samruddhi Khandale dd737d12e1 address comments
2022-09-08 20:30:57 +00:00

17 lines
386 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 "jupyter lab version" jupyter lab --version
check "node is installed" node --version
# Report result
reportResults