From ed3208f85cbc0e2c5c0c15bb6508a8927dfff46e Mon Sep 17 00:00:00 2001 From: Jonas Hoersch Date: Mon, 18 Dec 2017 10:18:15 +0100 Subject: [PATCH] travis: Add --quiet to conda calls Worksaround the terminal problems conda is having with travis. See also: https://github.com/conda/conda/issues/6468 --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8968e0fa2..7f6deed33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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