-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/manykarim/robot-framework-r…
- Loading branch information
Showing
2 changed files
with
53 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,45 @@ | ||
API_KEY="<reportPortalApiToken>" | ||
|
||
robot --listener robotframework_reportportal.listener \ | ||
--variable RP_ENDPOINT:"http://localhost:8080" \ | ||
--variable RP_API_KEY:"robotframework_MTXPBzKwQqa0deIxMkWzf4N6WW_5qxTiFzy-y32VPIf-57aSy-cTCsAcRIxhzjvH" \ | ||
--variable RP_PROJECT:"superadmin_personal" \ | ||
--variable RP_LAUNCH:"Robot Framework Launch" \ | ||
tests/booker | ||
--variable RP_ENDPOINT:"https://saas.reportportal.io" \ | ||
--variable RP_API_KEY:$API_KEY \ | ||
--variable RP_PROJECT:"robocon-io" \ | ||
--variable RP_LAUNCH:"Restful Booker" \ | ||
--variable RP_LAUNCH_ATTRIBUTES:"robocon version:3.0 type:regression component:booker" \ | ||
tests/01/booker | ||
|
||
robot --listener robotframework_reportportal.listener \ | ||
--variable BROWSER:chromium \ | ||
--variable RP_ENDPOINT:"https://saas.reportportal.io" \ | ||
--variable RP_API_KEY:$API_KEY \ | ||
--variable RP_PROJECT:"robocon-io" \ | ||
--variable RP_LAUNCH:"MFA Login Chromium" \ | ||
--variable RP_LAUNCH_ATTRIBUTES:"robocon version:3.0 type:regression component:login browser:chromium" \ | ||
tests/01/login | ||
|
||
robot --listener robotframework_reportportal.listener \ | ||
--variable BROWSER:chromium \ | ||
--variable RP_ENDPOINT:"https://saas.reportportal.io" \ | ||
--variable RP_API_KEY:$API_KEY \ | ||
--variable RP_PROJECT:"robocon-io" \ | ||
--variable RP_LAUNCH:"ToDo Chromium" \ | ||
--variable RP_LAUNCH_ATTRIBUTES:"robocon version:3.0 type:regression component:todo browser:chromium" \ | ||
tests/01/todo | ||
|
||
robot --listener robotframework_reportportal.listener \ | ||
--variable BROWSER:firefox \ | ||
--variable RP_ENDPOINT:"https://saas.reportportal.io" \ | ||
--variable RP_API_KEY:$API_KEY \ | ||
--variable RP_PROJECT:"robocon-io" \ | ||
--variable RP_LAUNCH:"MFA Login Firefox" \ | ||
--variable RP_LAUNCH_ATTRIBUTES:"robocon version:3.0 type:regression component:login browser:firefox" \ | ||
tests/01/login | ||
|
||
robot --listener robotframework_reportportal.listener \ | ||
--variable BROWSER:firefox \ | ||
--variable RP_ENDPOINT:"https://saas.reportportal.io" \ | ||
--variable RP_API_KEY:$API_KEY \ | ||
--variable RP_PROJECT:"robocon-io" \ | ||
--variable RP_LAUNCH:"ToDo Firefox" \ | ||
--variable RP_LAUNCH_ATTRIBUTES:"robocon version:3.0 type:regression component:todo browser:firefox" \ | ||
tests/01/todo |
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,9 @@ | ||
API_KEY="<reportPortalApiToken>" | ||
|
||
python $PWD/post_report.py \ | ||
--variable RP_ENDPOINT:"https://saas.reportportal.io" \ | ||
--variable RP_API_KEY:"$API_KEY" \ | ||
--variable RP_PROJECT:"robocon-io" \ | ||
--variable RP_LAUNCH:"Robot Framework Launch" \ | ||
--variable RP_LAUNCH_ATTRIBUTES:"robocon version:1.0 type:regression" \ | ||
/workspace/robot-framework-reporting/results/output.xml |