blob: 66ca40dd6875401c180711ca84c632cfa9ae6d82 (
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
check "conda" bash -c "conda --version | grep 4.12.0"
check "conda-forge" bash -c "conda config --show channels | grep conda-forge"
check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt
# Report result
reportResults
|