You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Using bitbucket pipeline, i am executing my webdriverIO test scripts in aws e2e instances. And i was able to see xml test reports in respective aws machines.
I need to publish these results within the bitbucket pipeline
Is this possible?
Hi, Chandramouli, thank you for reaching out to Atlassian Community.
In order to better assist you, it would be good to understand better how you are executing the commands to run the test. Could you please share the part of your YML file in which you are running these commands on AWS?
However, if the AWS instances you are executing your tests on are accessible over SSH, I believe you could make use of the secure copy command (scp) to copy the XML file from the AWS instance to the build container, as the following example:
scp -i <path to the ssh private key> <username from AWS>@<IP from AWS machine>:<path of the file in AWS> <local path>
Then, you could add the path where you have saved this file inside the build container (the <local path> of the command above) as an artifact of your build step.
Please let me know how it goes and feel free to share any additional questions regarding this case.
Kind regards,
Caroline
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.