mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 06:33:55 -06:00
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:
parent
e9d4eb741a
commit
2b8a2d0c20
5 changed files with 8 additions and 68 deletions
|
@ -82,7 +82,7 @@ def test_validateQualityProfiles(file_name):
|
|||
|
||||
except Exception as e:
|
||||
# File can't be read, header sections missing, whatever the case, this shouldn't happen!
|
||||
print("Go an Exception while reading he file [%s]: %s" % (file_name, e))
|
||||
print("Got an Exception while reading he file [%s]: %s" % (file_name, e))
|
||||
assert False
|
||||
|
||||
|
||||
|
@ -110,5 +110,5 @@ def test_validateVariantProfiles(file_name):
|
|||
assert False
|
||||
except Exception as e:
|
||||
# File can't be read, header sections missing, whatever the case, this shouldn't happen!
|
||||
print("Go an Exception while reading he file [%s]: %s" % (file_name, e))
|
||||
print("Got an Exception while reading he file [%s]: %s" % (file_name, e))
|
||||
assert False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue