Skip to content

Commit 3ea1f7f

Browse files
authored
BLD: Use quiet flag for conda commands. (#99)
To avoid `CondaError: BlockingIOError`
1 parent afdbcfa commit 3ea1f7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)