generic_test 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f9ac47ef59a74ef5217ab7799c57018405be18fbbe6dfce6c2c04d050353283
4
- data.tar.gz: 93079f38f519161351ebcc12d5dd03a5ef07a47fdc34b2c5ff3632a0a3d0b85d
3
+ metadata.gz: ed221c194f2b0ad95bd33839a69403f9fae9ef4f4ba4959c05d2d42e67860d90
4
+ data.tar.gz: 4a43347e265705cf4e048867cd752473011830afd48851a3f8694f47f4000a3b
5
5
  SHA512:
6
- metadata.gz: 625ffb51903fc52a6c9b3c07be6e03995c3674c041e90a13d2b6f8fd553a6ca9f28975d10e6d67f95e5fb7b43fb9a9ccb099ad7b6ec40bd35c53181ebeac9908
7
- data.tar.gz: 458b701efb701fd57fb624451117e8006cb8365bcbfb7f53b00d75ba91af3742f7b2c239d5cc37626e8b25e71187e50eee45c50a3cc204a445435c90abbe2d10
6
+ metadata.gz: 636ee1e1f48ef8729620121027fda4c84fc62c334332971b28730e01e97442a5661c0c7668cd06b6c94821a6b722e865b0143adfb7b51989c7c58e53d59c077c
7
+ data.tar.gz: b58eb19575dab1a23e7567f7da6f79e9ef6937af97352de60668823f8a73228ef5c3bf11eceb81e069b4121c7c6a43e5943a3a6fb83f59cbe17151ec55b672f0
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ Version 0.1.8
2
+ * Bug fix
3
+ * Add rspec_html_reporter as required in rspec command
4
+
1
5
  Version 0.1.7
2
6
  * Enhancement
3
7
  * Running generic_test exe yield correct status code on failure
data/exe/generic_test CHANGED
@@ -16,7 +16,7 @@ class Exe < Thor
16
16
  desc = ENV['PAGE_URL'].split('://').last.tr('/', '_')
17
17
  junit_format = "-f RspecJunitFormatter --out logs/page_#{desc}.xml"
18
18
  ENV['REPORT_PATH'] = "reports/#{desc}"
19
- html_format = "-f RspecHtmlReporter"
19
+ html_format = '--require rspec_html_reporter -f RspecHtmlReporter'
20
20
  command = "rspec #{test_file_path} --format documentation --color #{junit_format} #{html_format}"
21
21
  raise $CHILD_STATUS.to_s unless system command
22
22
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GenericTest
4
- VERSION = '0.1.7'
4
+ VERSION = '0.1.8'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: generic_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Garratt