From 38a3b7c0a37b422bf19eec8d0e284065663775bc Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 28 Oct 2019 12:28:12 +0100 Subject: [PATCH] Pipe the output of pip to cat, so it produces no procress bar which looks very ugly and just fills the logs in CircleCI. --- regression-tests.api/runtests | 2 +- regression-tests.auth-py/runtests | 2 +- regression-tests.dnsdist/runtests | 2 +- regression-tests.ixfrdist/runtests | 2 +- regression-tests.recursor-dnssec/runtests | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/regression-tests.api/runtests b/regression-tests.api/runtests index 6574536d17..56e5bf77b3 100755 --- a/regression-tests.api/runtests +++ b/regression-tests.api/runtests @@ -15,7 +15,7 @@ if [ ! -d .venv ]; then fi . .venv/bin/activate python -V -pip install -r requirements.txt +pip install -r requirements.txt | cat if [ -z "${SDIG}" ]; then export SDIG=$(type -P sdig) diff --git a/regression-tests.auth-py/runtests b/regression-tests.auth-py/runtests index 68797ebddc..6c30ba8c66 100755 --- a/regression-tests.auth-py/runtests +++ b/regression-tests.auth-py/runtests @@ -9,7 +9,7 @@ fi . .venv/bin/activate python -V -pip install -q -r requirements.txt +pip install -q -r requirements.txt | cat mkdir -p configs diff --git a/regression-tests.dnsdist/runtests b/regression-tests.dnsdist/runtests index eb2fc9b4c1..93543922c5 100755 --- a/regression-tests.dnsdist/runtests +++ b/regression-tests.dnsdist/runtests @@ -29,7 +29,7 @@ then export CPPFLAGS=-I/usr/local/opt/openssl/include fi fi -pip install -r requirements.txt +pip install -r requirements.txt | cat protoc -I=../pdns/ --python_out=. ../pdns/dnsmessage.proto protoc -I=../pdns/ --python_out=. ../pdns/dnstap.proto diff --git a/regression-tests.ixfrdist/runtests b/regression-tests.ixfrdist/runtests index 5a560a05d0..0bbf43915d 100755 --- a/regression-tests.ixfrdist/runtests +++ b/regression-tests.ixfrdist/runtests @@ -16,7 +16,7 @@ if [ ! -d .venv ]; then fi . .venv/bin/activate python -V -pip install -r requirements.txt +pip install -r requirements.txt | cat if [ -z "${IXFRDISTBIN}" ]; then IXFRDISTBIN=$(ls ../pdns/ixfrdist) diff --git a/regression-tests.recursor-dnssec/runtests b/regression-tests.recursor-dnssec/runtests index 4f1a674a3c..b21a776e66 100755 --- a/regression-tests.recursor-dnssec/runtests +++ b/regression-tests.recursor-dnssec/runtests @@ -7,8 +7,8 @@ if [ ! -d .venv ]; then fi . .venv/bin/activate python -V -pip install -U pip -pip install -r requirements.txt +pip install -U pip | cat +pip install -r requirements.txt | cat protoc -I=../pdns/ --python_out=. ../pdns/dnsmessage.proto protoc -I=../pdns/ --python_out=. ../pdns/dnstap.proto -- 2.47.2