File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ install:
2222 - conda config --add channels conda-forge
2323 - conda update -q conda
2424 - conda info -a
25- - conda create -n test-environment python=$PYTHON
25+ - conda create -q - n test-environment python=$PYTHON
2626 - source activate test-environment
2727 - if [[ "$PANDAS" == "MASTER" ]]; then
28- conda install numpy pytz python-dateutil;
28+ conda install -q numpy pytz python-dateutil;
2929 PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com";
3030 pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS pandas;
3131 else
32- conda install pandas=$PANDAS;
32+ conda install -q pandas=$PANDAS;
3333 fi
3434 - pip install coverage pytest pytest-cov flake8 codecov
3535 - REQ="ci/requirements-${PYTHON}-${PANDAS}"
3636 - if [ -f "$REQ.pip" ]; then
3737 pip install -r "$REQ.pip";
3838 else
39- conda install --file "$REQ.conda";
39+ conda install -q - -file "$REQ.conda";
4040 fi
4141 - conda list
4242 - python setup.py install
You can’t perform that action at this time.
0 commit comments