Skip to content

Commit

Permalink
pip_install_project: only run .conda-ci-conf if within a conda env
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed May 4, 2024
1 parent b002508 commit 73525cb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci-support.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,10 @@ pip_install_project()
with_echo pip install -r "$REQUIREMENTS_TXT"
fi
if test -f .conda-ci-build-configure.sh; then
with_echo source .conda-ci-build-configure.sh
if [[ "$CONDA_PREFIX" != "" ]]; then
if test -f .conda-ci-build-configure.sh; then
with_echo source .conda-ci-build-configure.sh
fi
fi
if test -f .ci-build-configure.sh; then
Expand Down

0 comments on commit 73525cb

Please sign in to comment.