From 8e95c829b2f573802ade8a772efe311008d762e0 Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Sat, 7 Nov 2015 12:23:59 +0100 Subject: [PATCH] Verbose is only for Continuous Integration --- test/test_compilation/test_compilation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_compilation/test_compilation.py b/test/test_compilation/test_compilation.py index f2c6d09c..a095dbfb 100644 --- a/test/test_compilation/test_compilation.py +++ b/test/test_compilation/test_compilation.py @@ -111,7 +111,7 @@ class FileTest(unittest.TestCase, metaclass=dynamic.DynamicTest): @staticmethod def compile_songbook(songbook, steps=None): """Compile songbook, and return the command return code.""" - command = [sys.executable, '-m', 'patacrep.songbook', '--cache=no', songbook, '-v'] + command = [sys.executable, '-m', 'patacrep.songbook', '--cache=no', songbook] if steps: command.extend(['--steps', steps])