1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-05 06:50:10 +01:00

tests: make pip3 install quieter for shorter CI logs

This commit is contained in:
Hans-Christoph Steiner 2017-10-18 14:58:07 +02:00
parent c80d68dcc0
commit af0d8ab84c

View File

@ -69,8 +69,8 @@ rm -rf $WORKSPACE/env
$pyvenv $WORKSPACE/env $pyvenv $WORKSPACE/env
. $WORKSPACE/env/bin/activate . $WORKSPACE/env/bin/activate
# workaround https://github.com/pypa/setuptools/issues/937 # workaround https://github.com/pypa/setuptools/issues/937
pip3 install setuptools==33.1.1 pip3 install --quiet setuptools==33.1.1
pip3 install dist/fdroidserver-*.tar.gz pip3 install --quiet dist/fdroidserver-*.tar.gz
# run tests in new pip+pyvenv install # run tests in new pip+pyvenv install
fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource
@ -83,8 +83,8 @@ rm -rf $WORKSPACE/env
$pyvenv $WORKSPACE/env $pyvenv $WORKSPACE/env
. $WORKSPACE/env/bin/activate . $WORKSPACE/env/bin/activate
# workaround https://github.com/pypa/setuptools/issues/937 # workaround https://github.com/pypa/setuptools/issues/937
pip3 install setuptools==33.1.1 pip3 install --quiet setuptools==33.1.1
pip3 install -e $WORKSPACE pip3 install --quiet -e $WORKSPACE
python3 setup.py install python3 setup.py install
# run tests in new pip+pyvenv install # run tests in new pip+pyvenv install