Skip to content

Commit ea2dc61

Browse files
committed
prepare for version 1.7.0
1 parent e081072 commit ea2dc61

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ rainforest run --tag run-me --fg --conflict abort
5757
Run 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

120120
To 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

lib/rainforest_cli/options.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

lib/rainforest_cli/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module RainforestCli
3-
VERSION = '1.6.5'
3+
VERSION = '1.7.0'
44
end

0 commit comments

Comments
 (0)