Skip to content

Commit 87bd0a6

Browse files
committed
Add 'conda list' for azure/posix after activate 'pandas-dev'
1 parent ca2ac60 commit 87bd0a6

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

ci/incremental/setup_conda_environment.cmd

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ conda remove --all -q -y -n pandas-dev
1616
conda env create --file=ci\deps\azure-windows-%CONDA_PY%.yaml
1717

1818
call activate pandas-dev
19+
@rem Display pandas-dev environment (for debugging)
1920
conda list
2021

2122
if %errorlevel% neq 0 exit /b %errorlevel%

ci/incremental/setup_conda_environment.sh

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ set +v
2323
source activate pandas-dev
2424
set -v
2525

26+
# Display pandas-dev environment (for debugging)
27+
conda list
28+
2629
# remove any installed pandas package
2730
# w/o removing anything else
2831
echo

ci/install_travis.sh

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ pip list --format columns |grep pandas
100100
echo "[running setup.py develop]"
101101
python setup.py develop || exit 1
102102

103+
# Display pandas-dev environment (for debugging)
103104
echo
104105
echo "[show environment]"
105106
conda list

0 commit comments

Comments
 (0)