Skip to content

Commit

Permalink
Decrease the amount of output from apt/conda
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarthisius committed Nov 15, 2020
1 parent 2ffab0c commit 3e6c904
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/ci_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set -x # Show which command is being run

case ${RUNNER_OS} in
linux|Linux)
sudo apt-get install \
sudo apt-get -qqy install \
libhdf5-serial-dev \
libnetcdf-dev \
libproj-dev \
Expand Down Expand Up @@ -36,7 +36,8 @@ if [[ "${RUNNER_OS}" == "Windows" ]] && [[ ${dependencies} != "minimal" ]]; then
SCIPY=$(grep scipy tests/test_requirements.txt)
conda config --set always_yes yes
conda info -a
conda install --yes -c conda-forge $CYTHON $NUMPY $CARTOPY $H5PY $MATPLOTLIB $SCIPY
conda install --quiet --yes -c conda-forge \
$CYTHON $NUMPY $CARTOPY $H5PY $MATPLOTLIB $SCIPY
else
python -m pip install --upgrade pip
python -m pip install --upgrade wheel
Expand Down Expand Up @@ -64,4 +65,4 @@ fi
# Step 3: install yt
python -m pip install -e .

set +x # Do not show which command is being run (Travis default)
set +x

0 comments on commit 3e6c904

Please sign in to comment.