Skip to content

Commit a1fdad8

Browse files
committed
verify which path is executed
1 parent 37c32d1 commit a1fdad8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dev/run-pip-tests

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,18 @@ for python in "${PYTHON_EXECS[@]}"; do
7676
VIRTUALENV_PATH="$VIRTUALENV_BASE"/$python
7777
rm -rf "$VIRTUALENV_PATH"
7878
if [ -n "$USE_CONDA" ]; then
79+
echo "+++++++++ using conda"
7980
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools
8081
source activate "$VIRTUALENV_PATH"
8182
else
8283
mkdir -p "$VIRTUALENV_PATH"
84+
echo "+++++++++ using virtualenv"
8385
virtualenv --python=$python "$VIRTUALENV_PATH"
8486
source "$VIRTUALENV_PATH"/bin/activate
8587
fi
8688
# Upgrade pip & friends if using virtual env
8789
if [ ! -n "$USE_CONDA" ]; then
90+
echo "++++++++ using pip"
8891
pip install --upgrade pip wheel numpy
8992
fi
9093

0 commit comments

Comments
 (0)