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

@ -1,4 +1,4 @@
# Copyright (c) 2018 Ultimaker B.V.
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from UM.Application import Application
@ -48,7 +48,6 @@ class ArrangeArray:
return self._count
def get(self, index):
print(self._arrange)
return self._arrange[index]
def getFirstEmpty(self):