Make apt-get be quiet in the integration test

This commit is contained in:
Marco Castelluccio 2019-11-02 17:08:18 +01:00
Родитель cf2dc87dd9
Коммит 4b48bccab5
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -437,8 +437,8 @@ tasks:
git -c advice.detachedHead=false checkout ${head_rev} &&
pip install --disable-pip-version-check --quiet --no-cache-dir . &&
pip install --disable-pip-version-check --quiet --no-cache-dir -r test-requirements.txt &&
apt-get update &&
apt-get install -y redis-server &&
apt-get -qq update &&
apt-get -qq install -y redis-server &&
python -c 'import os; print(os.environ.keys())' &&
bash ./scripts/integration_test.sh"
cache:

Просмотреть файл

@ -745,8 +745,8 @@ tasks:
git checkout ${version} &&
pip install --quiet . &&
pip install --quiet -r test-requirements.txt &&
apt-get update &&
apt-get install -y redis-server &&
apt-get -qq update &&
apt-get -qq install -y redis-server &&
python -c 'import os; print(os.environ.keys())' &&
bash ./scripts/integration_test.sh"
cache: