- Katalon Studio Version: 7.9.1
- OS Version: Windows 10
- Browser Version: Version 89.0.4389.82 (Official Build) (64-bit)
Steps to Reproduce:
-
Configure DevOps pipeline to execute katalon scripts
-
Run the DevOps pipeline
Expected behavior: Reports should upload to Katalon TestOps
Actual result: Reports ae not uploaded to Katalon TestOps
Screenshots:
2 Likes
Hi guys,
I have the same issue. When I run the pipeline in azure devOps, it runs successfully. However, in the logs there is no mention that the report has been uploaded to Azure DevOps. And when I check my test plan in the test results history, i do not see the results. I have followed the integration with Katalon and Azure DevOps document. Please help.
I am experiencing the same issue. I think the reports only show in TestOps when a test is run through katalon studio or when the tests are kicked off via TestOps itself. I have DevOps kick off the scripts as part of the release steps and they are run via the katalon runtime engine. For whatever reason the reports do not get automatically uploaded if the test is run from the runtime engine.
Any news on this topic, I too need to have the test results on Katalon TestOps after the tests run on the azure pipeline.
1 Like
It worked using this approach - added this code on the yaml file.
#Send report to TestOps
- task: PowerShell@2
inputs:
targetType: āinlineā
script: |
$client = new-object System.Net.WebClient
$client.DownloadFile(āhttps://github.com/katalon-studio/report-uploader/releases/download/v0.0.8/katalon-report-uploader-0.0.8.jarā, ākatalon-report-uploader-0.0.8.jarā)
java -jar katalon-report-uploader-0.0.8.jar --projectId=65612 --path=Reports --password=$(KatalonKey) --type=junit
This isnāt working as expected, when running a collection the profiles are not showingā¦
1 Like
Hi @janete.m,
Thank you for sharing the solution to our community. Happy testing!
Best,
Vu