File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env ruby
2
2
3
3
allure_project_id = '2'
4
- allure_url = 'https://streamio.testops.cloud/api'
4
+ allure_url = 'https://streamio.testops.cloud'
5
+ allure_api_url = "#{ allure_url } /api"
5
6
allure_regression_testplan = 'Regression Testing'
6
7
allure_results_path = 'allure-results'
7
8
@@ -20,7 +21,7 @@ lane :allure_launch do |options|
20
21
next unless is_check_required ( sources : sources_matrix [ :e2e ] , force_check : @force_check )
21
22
22
23
launch_id = allure_create_launch (
23
- url : allure_url ,
24
+ url : allure_api_url ,
24
25
project_id : allure_project_id ,
25
26
github_run_details : github_run_details ,
26
27
cron : options [ :cron ]
35
36
36
37
desc 'Create test-case in Allure TestOps and get its id'
37
38
lane :allure_testcase do
38
- allure_create_testcase ( url : allure_url , project_id : allure_project_id )
39
+ allure_create_testcase ( url : allure_api_url , project_id : allure_project_id )
39
40
end
40
41
41
42
desc 'Sync and run regression test-plan on Allure TestOps'
42
43
lane :allure_start_regression do |options |
43
44
allure_run_testplan (
44
- url : allure_url ,
45
+ url : allure_api_url ,
45
46
project_id : allure_project_id ,
46
47
release_version : options [ :release_version ] ,
47
48
testplan : allure_regression_testplan ,
You can’t perform that action at this time.
0 commit comments