Reduce print output during happy path of automated tests

It should really just not print anything except what pytest prints, so you can easily see what tests have failed and what have not.
This commit is contained in:
Ghostkeeper 2019-03-11 11:09:46 +01:00
parent e9d4eb741a
commit 2b8a2d0c20
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276
5 changed files with 8 additions and 68 deletions

View file

@ -77,8 +77,6 @@ def test_duration():
# Fake a print duration message
print_information._onPrintDurationMessage(0, {"travel": 20}, [10])
# Some debugging code, since this test sometimes fails on the CI server.
print("Testing debug;", print_information.getFeaturePrintTimes(), print_information.currentPrintTime)
# We only set a single time, so the total time must be of the same value.
assert int(print_information.currentPrintTime) == 20