Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the error code when exiting without any issues found. #44

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion joft/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def execute_template(template_file_path: str, jira_session: jira.JIRA) -> int:
f"'{jira_template.jira_search.jql}'!"
)
)
return 1
return 0

# when the jira query is successfull the actions of template will be then executed
# for each ticket in the query
Expand Down
2 changes: 1 addition & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def test_execute_template_exit_no_tickets(

ret_code = joft.base.execute_template(yaml_file_path, mock_jira_session)

assert ret_code == 1
assert ret_code == 0

assert mock_execute_actions_per_trigger_ticket.call_count == 0
assert mock_execute_actions.call_count == 0
Expand Down
Loading