From 866017f9c1c09c5c1782c62e115b698d0670c527 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 29 Sep 2015 06:26:26 +0200 Subject: [PATCH] Pass --verbose to Homebrew. The homebrew progress bars cause Travis to bail out because the 4MB maximum log size was reached. Ironically, that does not happen with --verbose. --- scripts/dev/ci_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci_install.py index 58ae785e3..d262c9021 100644 --- a/scripts/dev/ci_install.py +++ b/scripts/dev/ci_install.py @@ -48,7 +48,7 @@ def brew(args, silent=False): with open(os.devnull, 'w') as f: subprocess.check_call(['brew'] + args, stdout=f) else: - subprocess.check_call(['brew'] + args) + subprocess.check_call(['brew'] + args + ['--verbose']) def check_setup(executable):