8000 CI: Add 'conda list' for azure/posix after activate 'pandas-dev' by h-vetinari · Pull Request #25377 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI: Add 'conda list' for azure/posix after activate 'pandas-dev' #25377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add 'conda list' for azure/posix after activate 'pandas-dev'
  • Loading branch information
h-vetinari committed Feb 19, 2019
commit a953fd6080ebd5384a4fb9afcbe6fe0b4b649b14
1 change: 1 addition & 0 deletions ci/incremental/setup_conda_environment.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ conda remove --all -q -y -n pandas-dev
conda env create --file=ci\deps\azure-windows-%CONDA_PY%.yaml

call activate pandas-dev
@rem Display pandas-dev environment (for debugging)
conda list

if %errorlevel% neq 0 exit /b %errorlevel%
3 changes: 3 additions & 0 deletions ci/incremental/setup_conda_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ set +v
source activate pandas-dev
set -v

# Display pandas-dev environment (for debugging)
conda list

# remove any installed pandas package
# w/o removing anything else
echo
Expand Down
1 change: 1 addition & 0 deletions ci/install_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ pip list --format columns |grep pandas
echo "[running setup.py develop]"
python setup.py develop || exit 1

# Display pandas-dev environment (for debugging)
echo
echo "[show environment]"
conda list
Expand Down
0