From af0d8ab84c2374d632ac32650e731bcd328d3a42 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 18 Oct 2017 14:58:07 +0200 Subject: [PATCH] tests: make `pip3 install` quieter for shorter CI logs --- tests/complete-ci-tests | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/complete-ci-tests b/tests/complete-ci-tests index 9792b5bf..bd7e7366 100755 --- a/tests/complete-ci-tests +++ b/tests/complete-ci-tests @@ -69,8 +69,8 @@ rm -rf $WORKSPACE/env $pyvenv $WORKSPACE/env . $WORKSPACE/env/bin/activate # workaround https://github.com/pypa/setuptools/issues/937 -pip3 install setuptools==33.1.1 -pip3 install dist/fdroidserver-*.tar.gz +pip3 install --quiet setuptools==33.1.1 +pip3 install --quiet dist/fdroidserver-*.tar.gz # run tests in new pip+pyvenv install fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource @@ -83,8 +83,8 @@ rm -rf $WORKSPACE/env $pyvenv $WORKSPACE/env . $WORKSPACE/env/bin/activate # workaround https://github.com/pypa/setuptools/issues/937 -pip3 install setuptools==33.1.1 -pip3 install -e $WORKSPACE +pip3 install --quiet setuptools==33.1.1 +pip3 install --quiet -e $WORKSPACE python3 setup.py install # run tests in new pip+pyvenv install -- 2.30.2