-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge multiple features in one XRAY result
If there is multiple features files with the same test plany ID and test execution ID we should merge them in one XRAY results and publish only once #27.
- Loading branch information
Showing
3 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@jira.test_plan('JIRA-1') | ||
Feature: Calculator2 | ||
Test if adding two numbers returns proper result. | ||
|
||
@allure.testcase('JIRA-41') | ||
Scenario: Add two numbers should pass | ||
When I add 4 and 5 | ||
Then result is 9 | ||
|
||
@jira.testcase('JIRA-42') | ||
Scenario: Add two numbers should failed | ||
When I add 4 and 6 | ||
Then result is 9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters