diff --git a/conf/jira.yaml.template b/conf/jira.yaml.template index 9c90993fe2d..93a863509db 100644 --- a/conf/jira.yaml.template +++ b/conf/jira.yaml.template @@ -7,4 +7,4 @@ JIRA: COMMENT_VISIBILITY: "Red Hat Employee" ENABLE_COMMENT: false # Comment only if jira is in one of the following state - ISSUE_STATUS: ["Review", "Release Pending"] + ISSUE_STATUS: ["Testing", "Release Pending"] diff --git a/robottelo/config/validators.py b/robottelo/config/validators.py index d28c1a0878f..56c38f9d851 100644 --- a/robottelo/config/validators.py +++ b/robottelo/config/validators.py @@ -189,7 +189,7 @@ Validator('jira.comment_type', default="group"), Validator('jira.comment_visibility', default="Red Hat Employee"), Validator('jira.enable_comment', default=False), - Validator('jira.issue_status', default=["Review", "Release Pending"]), + Validator('jira.issue_status', default=["Testing", "Release Pending"]), ], ldap=[ Validator( diff --git a/robottelo/constants/__init__.py b/robottelo/constants/__init__.py index 70b5dc3d552..459eb2cab8b 100644 --- a/robottelo/constants/__init__.py +++ b/robottelo/constants/__init__.py @@ -1723,8 +1723,16 @@ # Jira statuses used by Robottelo issue handler. JIRA_TESTS_PASSED_LABEL = "tests-passed" JIRA_TESTS_FAILED_LABEL = "tests-failed" -JIRA_OPEN_STATUSES = ("New", "Backlog", "Refinement", "To Do", "In Progress") -JIRA_ONQA_STATUS = "Review" +JIRA_OPEN_STATUSES = ( + "New", + "Backlog", + "Refinement", + "To Do", + "In Progress", + "Review", + "Release Pending - Upstream", +) +JIRA_ONQA_STATUS = "Testing" JIRA_CLOSED_STATUSES = ("Release Pending", "Closed") JIRA_WONTFIX_RESOLUTIONS = "Obsolete"