I am using Jmeter with Tauras and tests are running through Bitbucket pipeline. I have managed to get passfail criteria and Blazemeter output report url is displayed with the results inside Bitbucket. Is it possible if I can extract that URL and get the result URL in slack to have better slack notification?
You can redirect your Taurus output into a file, i.e.
bzt test.yaml -report > foo.txt
The file can be saved as a step artifact
There is slack-notify pipe which you can use for sending a custom message, report link can be extracted from Taurus output using grep command, something like:
grep -oP -m1 'https?://a\.blazemeter[^ ]+' foo.txt
BlazeMeter has its own Slack alerts as well.