Skip to content

Commit

Permalink
test: don't silently fail reposts in tests (frappe#31559)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush authored Jul 8, 2022
1 parent 8b69a3e commit 4ec85cb
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ def repost(doc):
doc.set_status("Completed")

except Exception as e:
if frappe.flags.in_test:
# Don't silently fail in tests,
# there is no reason for reposts to fail in CI
raise

frappe.db.rollback()
traceback = frappe.get_traceback()
doc.log_error("Unable to repost item valuation")
Expand Down

0 comments on commit 4ec85cb

Please sign in to comment.