I'm using the blazemeter/taurus:1.13.2
Docker image with the blazemeter reporting module to execute tests.
Is there a way from taurus command line that I can pass a value for the "Notes" field on BlazeMeter? I've passed other values successfully such as:
-o modules.blazemeter.report-name="${report_name}"
I was hoping something similar was all that was needed to pass in "Notes". I've tried:
-o modules.blazemeter.notes="${notes}"
but no luck.
Here's my script to run the full command line:
#!/bin/bash
api_token=$1
timestamp=`date +%s`
report_name="`hostname`_`git log --format='%h' -n 1`_taurus-jmeter_${timestamp}"
notes="testing use of notes through taurus command line args"
artifacts_dir="artifacts/${timestamp}"
docker run -t --rm -v `pwd`:/bzt-configs -v `pwd`/artifacts:/tmp/artifacts blazemeter/taurus:1.13.2 taurus.yml -o settings.artifacts-dir="${artifacts_dir}" -o modules.blazemeter.report-name="${report_name}" -o modules.blazemeter.notes="${notes}" -o modules.blazemeter.token="${api_token}"