Skip to content

Commit

Permalink
travis: Add --quiet to conda calls
Browse files Browse the repository at this point in the history
Worksaround the terminal problems conda is having with travis.
See also: conda/conda#6468
  • Loading branch information
coroa committed Dec 18, 2017
1 parent df2b5e8 commit ed3208f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ before_install:
- conda info -a

install:
- conda create -n pypsa python=$PYTHON_VERSION
- conda env update -n pypsa --file=requirements.yml
- conda env update -n pypsa --file=requirements_dev.yml
- conda create -q -n pypsa python=$PYTHON_VERSION
- conda env update -q -n pypsa --file=requirements.yml
- conda env update -q -n pypsa --file=requirements_dev.yml
- source activate pypsa
- conda install -c conda-forge python-coveralls # don't install on appveyor
- conda install -q -c conda-forge python-coveralls # don't install on appveyor
- pip install --no-cache-dir .

# before_script: # configure a headless display to test plot generation
Expand Down

0 comments on commit ed3208f

Please sign in to comment.