blob: 568b9aa020091912896f770079edddc5e50e3b36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "version" python --version
check "lzma" python -c "import lzma"
# Report result
reportResults
|