Skip to content

Commit

Permalink
add test case fail
Browse files Browse the repository at this point in the history
  • Loading branch information
pnilan committed Dec 17, 2024
1 parent de0340a commit d87dd8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions airbyte-ci/connectors/auto_merge/src/auto_merge/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ def merge_with_retries(pr: PullRequest, max_retries: int = 3, wait_time: int = 6
max_retries (int, optional): The maximum number of retries. Defaults to 3.
wait_time (int, optional): The time to wait between retries in seconds. Defaults to 60.
"""
logger.error("Intentionally failing auto-merge -- testing that new feature works!")
return None
for i in range(max_retries):
try:
pr.merge(merge_method=MERGE_METHOD)
Expand Down

0 comments on commit d87dd8c

Please sign in to comment.