File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11# Rainforest CLI Changelog
22
3+ ## 1.7.0 - 8th August 2016
4+ - New run flag: ` --wait ` for hooking into existing run instead of starting a new one.
5+ (77df41bf79b8635fb8c2d8a93968f975db092c69, @shosti )
6+ - New run flag: ` --junit-file ` for exporting run results into JUnit format.
7+ (349f2b1f5c8b423766875751c7cafed692fc2bed, @briancolby )
8+ - New feature: Embed screenshots and file download links in your RFML tests.
9+ (e081072c591c810b8bc3edce6d2e507d12a1a18e, @epaulet )
10+
311## 1.6.5 - 13th June 2016
412- Exit with non-zero status code when ` validate ` fails. (8db1d38be39aa50d2afcdef817f78c654b3108b6,
513@DyerSituation )
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ rainforest run --tag run-me --fg --conflict abort
5757Run all in the foreground and generate a junit xml report.
5858
5959``` bash
60- rainforest run all --fg --junit rainforest.xml
60+ rainforest run all --fg --junit-file rainforest.xml
6161```
6262
6363#### Creating and Managing Tests
@@ -119,7 +119,7 @@ rainforest browsers
119119
120120To generate a junit xml report for a test run which has already completed
121121``` bash
122- rainforest report --run-id < run-id> --junit rainforest.xml
122+ rainforest report --run-id < run-id> --junit-file rainforest.xml
123123```
124124
125125## Options
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ def initialize(args)
115115 @junit_file = value
116116 end
117117
118- opts . on ( '--run-id ID' , 'Gather the results of a completed run, must be run with export and --junit' ) do |value |
118+ opts . on ( '--run-id ID' , 'Gather the results of a completed run, must be run with export and --junit-file ' ) do |value |
119119 @run_id = value
120120 end
121121
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22module RainforestCli
3- VERSION = '1.6.5 '
3+ VERSION = '1.7.0 '
44end
You can’t perform that action at this time.
0 commit comments