Skip to content

Commit

Permalink
Do not update already-installed deps on tests
Browse files Browse the repository at this point in the history
Signed-off-by: Gigon Bae <gbae@nvidia.com>
  • Loading branch information
gigony committed Aug 3, 2022
1 parent 27172b6 commit 2ed2c34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,9 @@ test() {

install_python_test_deps_() {
if [ -n "${CONDA_PREFIX}" ]; then
run_command conda install -c conda-forge -y \
# https://github.com/rapidsai/cucim/pull/349#issuecomment-1203335731
# Do not update or change already-installed dependencies.
run_command conda install -c conda-forge -y --freeze-installed \
--file ${TOP}/python/cucim/requirements-test.txt
else
if [ -n "${VIRTUAL_ENV}" ]; then
Expand Down

0 comments on commit 2ed2c34

Please sign in to comment.