Fix post run message , generate junit example: --type junit -> --type junit-xml

fixes post run message :
* To generate a JUnit report, run:
	rally task export aa6a9b57-9165-41c0-ab49-dbce0a9eaf31 --type junit --to output.xml
-->
* To generate a JUnit report, run:
	rally task export aa6a9b57-9165-41c0-ab49-dbce0a9eaf31 --type junit-xml --to output.xml

as in :
tests/ci/rally_gate_functions.sh:    rally task export --type junit-xml --to rally-plot/junit.xml

Change-Id: I6c139c5ff51d3666ee614630d81956e0433ead5b
This commit is contained in:
pkomarov 2019-09-20 15:56:19 +03:00
parent 02311d320b
commit 38d543af6b
2 changed files with 3 additions and 2 deletions

View File

@ -197,7 +197,8 @@ To start a task, run the ``task start`` command (you can also add the
rally task report 6fd9a19f-5cf8-4f76-ab72-2e34bb1d4996 --out output.html
* To generate a JUnit report, run:
rally task export 6fd9a19f-5cf8-4f76-ab72-2e34bb1d4996 --type junit --to output.xml
rally task export 6fd9a19f-5cf8-4f76-ab72-2e34bb1d4996 --type junit-xml
--to output.xml
* To get raw JSON output of task results, run:
rally task report 6fd9a19f-5cf8-4f76-ab72-2e34bb1d4996 --json --out output.json

View File

@ -532,7 +532,7 @@ class TaskCommands(object):
print("* To plot HTML graphics with this data, run:")
print("\trally task report %s --out output.html\n" % task["uuid"])
print("* To generate a JUnit report, run:")
print("\trally task export %s --type junit --to output.xml\n" %
print("\trally task export %s --type junit-xml --to output.xml\n" %
task["uuid"])
print("* To get raw JSON output of task results, run:")
print("\trally task report %s --json --out output.json\n" %