From dc3bfb5eb47942eec8e83f710c4f59fc2278cc1f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 10 Nov 2015 08:47:29 +0100 Subject: [PATCH] bdd: Print ignored lines in testprocess. --- tests/integration/testprocess.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/integration/testprocess.py b/tests/integration/testprocess.py index 4b7608464..4bd016e45 100644 --- a/tests/integration/testprocess.py +++ b/tests/integration/testprocess.py @@ -136,7 +136,9 @@ class Process(QObject): print("INVALID: {}".format(line)) continue - if parsed is not None: + if parsed is None: + print("IGNORED: {}".format(line)) + else: self._data.append(parsed) self.new_data.emit(parsed)