Skip to content

Merge Results

Latest
Compare
Choose a tag to compare
@andmarios andmarios released this 19 May 19:05
· 44 commits to master since this release
v1.5
780237a

A new release, a new small yet exciting feature.

This version adds a new flag: -merge-results. It can be used to merge results from previous runs into a single report.

How does it work?
First run a few tests and save their results as a json file:

coyote -c test-1.yml -json-out test-1.results.json
coyote -c test-2.yml -json-out test-2.results.json
coyote -c test-3.yml -json-out test-3.results.json

Now combine the results in a single report:

coyote -merge-results test-1.results.json test-2.results.json test-3.results.json

They are merged in series, so the test order is kept.
If you do not set a title, the title of the first test file will be used. Also the time from the first test file is used in the combined output.