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

@ -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