From 8dd3f9a9318cdf872e83f9a7508d485c3901d40a Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Thu, 22 Oct 2015 19:45:55 +0200 Subject: [PATCH] Verbose compilation in tests --- 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 b5ccf3fb..812ba0ac 100644 --- a/test/test_compilation/test_compilation.py +++ b/test/test_compilation/test_compilation.py @@ -94,7 +94,7 @@ class FileTest(unittest.TestCase, metaclass=dynamic.DynamicTest): @staticmethod def compile_songbook(songbook, steps=None): """Compile songbook, and return the command return code.""" - command = ['python', '-m', 'patacrep.songbook', songbook] + command = ['python', '-m', 'patacrep.songbook', songbook, '-v'] if steps: command.extend(['--steps', steps])