From 49137150add5a92cf398e1972ffff73990095504 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 3 Nov 2015 22:41:56 +0100 Subject: tests: Print raw yaml in get_session() in QuteProc. --- tests/integration/quteprocess.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/integration/quteprocess.py b/tests/integration/quteprocess.py index 029f63ac8..c5d839dc2 100644 --- a/tests/integration/quteprocess.py +++ b/tests/integration/quteprocess.py @@ -232,7 +232,10 @@ class QuteProc(testprocess.Process): self.wait_for(category='message', loglevel=logging.INFO, message='Saved session {}.'.format(session)) with open(session, encoding='utf-8') as f: - return yaml.load(f) + data = f.read() + + print(data) + return yaml.load(data) @pytest.yield_fixture(scope='module') -- cgit v1.2.3-54-g00ecf