diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-09-06 23:50:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 23:50:11 +0300 |
commit | a5fbdab3c096152dd3a318c0c23da9465815aa69 (patch) | |
tree | 30a1709f45c5351917864a7fd5c05ad782744b0c /test | |
parent | d8ee2e8cf193bac39d9f31003f18d90b16dc969e (diff) |
fix bug - Debian / Ubuntu base conda-notice.txt error (#135)
* fix bug
* move config
* fix tests
Diffstat (limited to 'test')
-rwxr-xr-x | test/anaconda/test.sh | 1 | ||||
-rw-r--r-- | test/conda/install_conda.sh | 1 | ||||
-rwxr-xr-x | test/conda/test.sh | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/test/anaconda/test.sh b/test/anaconda/test.sh index 511291a..c2eafe0 100755 --- a/test/anaconda/test.sh +++ b/test/anaconda/test.sh @@ -7,6 +7,7 @@ source dev-container-features-test-lib # Definition specific tests check "version" conda --version +check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt # Report result reportResults
\ No newline at end of file diff --git a/test/conda/install_conda.sh b/test/conda/install_conda.sh index 92fd2e0..efe7f5e 100644 --- a/test/conda/install_conda.sh +++ b/test/conda/install_conda.sh @@ -7,6 +7,7 @@ source dev-container-features-test-lib check "conda" conda --version | grep 4.12.0 check "conda-forge" 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 diff --git a/test/conda/test.sh b/test/conda/test.sh index 69120d9..24755c5 100755 --- a/test/conda/test.sh +++ b/test/conda/test.sh @@ -7,6 +7,7 @@ source dev-container-features-test-lib # Definition specific tests check "version" conda --version +check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/conda-notice.txt # Report result reportResults |