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

@ -217,11 +217,6 @@ class Arrange:
prio_slice = self._priority[min_y:max_y, min_x:max_x]
prio_slice[new_occupied] = 999
# If you want to see how the rasterized arranger build plate looks like, uncomment this code
# numpy.set_printoptions(linewidth=500, edgeitems=200)
# print(self._occupied.shape)
# print(self._occupied)
@property
def isEmpty(self):
return self._is_empty