From da88d30689baee033d13f7e14f51228aef27c564 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 14 Oct 2018 10:59:50 +0200 Subject: [PATCH] Fix the CI on debian --- tests/test_climat2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_climat2.py b/tests/test_climat2.py index 9bb4ba3..6d98136 100644 --- a/tests/test_climat2.py +++ b/tests/test_climat2.py @@ -158,7 +158,7 @@ class TestGetMeta(unittest.TestCase): def test_flac(self): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.flac'], - stdout=subprocess.PIPE) + stdout=subprocess.PIPE, bufsize=0) stdout, _ = proc.communicate() self.assertIn(b'comments: Thank you for using MAT !', stdout) self.assertIn(b'genre: Python', stdout)