Skip to content

Commit

Permalink
Only allow 1 exception to test
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCinquini committed Dec 4, 2024
1 parent e727abf commit 0a2d016
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,4 @@ Feature: Execute CWL workflows using the Airflow API

Examples:
| test_case |
| EMIT |
| SBG_E2E_SCALE |
| SBG_PREPROCESS |
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ Feature: Execute CWL workflows using the OGC API
Examples:
| test_case |
| SBG_E2E_SCALE |
| EMIT |

Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def check_failed(e):
@backoff.on_exception(
backoff.constant,
(AssertionError, requests.exceptions.HTTPError),
max_time=3600,
max_time=1,
giveup=check_failed,
jitter=None,
interval=5,
Expand Down

0 comments on commit 0a2d016

Please sign in to comment.