Skip to content

Commit

Permalink
Increase thresholds for acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
otto-ifak committed Oct 1, 2024
1 parent 852d449 commit d71fb3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/acceptance/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
for cause in sorted(causes.keys(), key=lambda x: causes[x]):
print(f"{causes[cause]}: {cause}")

if mat.valid_rejected > 5:
# TODO: need to fix 7 issues in aas-core-python first
if mat.valid_rejected > 10:
print("Valid instances have been rejected!")
exit(1)

# TODO: need to fix 7 issues in aas-core-python first
if mat.invalid_accepted > 7:
if mat.invalid_accepted > 10:
print("Invalid instances have been accepted!")
exit(1)

Expand Down

0 comments on commit d71fb3b

Please sign in to comment.