diff --git a/continuous_integration/home/coder/.local/bin/conda-utils b/continuous_integration/home/coder/.local/bin/conda-utils index 8655941c1..67302728d 100755 --- a/continuous_integration/home/coder/.local/bin/conda-utils +++ b/continuous_integration/home/coder/.local/bin/conda-utils @@ -64,7 +64,7 @@ install_legate_core_with_war() { # WAR: legate-core depends on a different version of numpy than what is already installed. # The correct version will be installed when legate-core is installed below. # See github issue: https://github.com/nv-legate/legate.core/issues/812 - #mamba uninstall -y -n "${DEFAULT_CONDA_ENV:-legate}" numpy; + mamba uninstall -y -n "${DEFAULT_CONDA_ENV:-legate}" numpy; mamba install -y -n "${DEFAULT_CONDA_ENV:-legate}" -c nvidia -c conda-forge -c /tmp/conda-build/legate_core legate-core; } diff --git a/continuous_integration/home/coder/.local/bin/run-test-or-analysis b/continuous_integration/home/coder/.local/bin/run-test-or-analysis index 3555afb89..c3bce3ffe 100755 --- a/continuous_integration/home/coder/.local/bin/run-test-or-analysis +++ b/continuous_integration/home/coder/.local/bin/run-test-or-analysis @@ -12,7 +12,7 @@ run_test_or_analysis() { conda info; - ls -lART /home/coder/.conda/envs/legate/lib + set -xeuo pipefail @@ -20,6 +20,7 @@ run_test_or_analysis() { "unit") echo "Executing unit tests..." mamba install -y -n "${DEFAULT_CONDA_ENV:-legate}" -c conda-forge pytest pytest-mock ipython jupyter_client + ls -lART /home/coder/.conda/envs/legate/lib cd ~/legate/tests/unit pytest ;; @@ -30,6 +31,7 @@ run_test_or_analysis() { # is done on a job which does not checkout the repo (and hence cannot read the # .pre-commit.yaml). mamba install -y -n "${DEFAULT_CONDA_ENV:-legate}" mypy=1.5.1 + ls -lART /home/coder/.conda/envs/legate/lib cd ~/legate mypy legate ;;