fastlane-plugin-test_center 3.2.4 → 3.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d87c9d87f8194c2e727ba5d6304dd892f4032651
4
- data.tar.gz: 1ebd7d82e0e221d9451b297918b65e66444fc147
3
+ metadata.gz: 7055e4c4e362cf3647b591f874ae1cc561c34279
4
+ data.tar.gz: a45fa48fe76822d543401ced301757a6243313a9
5
5
  SHA512:
6
- metadata.gz: de716ab6593bcfbcd9ca01c88364cedace889c46d1dfc35ed6ef4a2514784faa0decf5819ca728d592174b66da393a181da25a33c863b22cc8fe1b51e5ac79d2
7
- data.tar.gz: '086fdca44048dc9285c71941018a0ad36851b6e415cd94001fb20b58a139110cd23901965de363606bbacbb3bf0b3a7666e2289356e535ae1f0f836c16bbbede'
6
+ metadata.gz: ce30e5cabbe3a2583398aa9966183f6adc65727494c17a493b4d520c443f0fde8c85eff038251fb0689e76b7f154e0c8e5c5814c67451804cdc43da91e647a8a
7
+ data.tar.gz: ad8780b6e25749ed2ae43c4f6c709002e4ceb3b358335453476c09de771ae74b4d317dfd22edaad67fb638a0653623e8d8ffce93b70dfb35ef4fbfa6c0131fc5
@@ -170,7 +170,6 @@ module TestCenter
170
170
 
171
171
  def testrun_info(batch, try_count, reportnamer, output_directory)
172
172
  report_filepath = File.join(output_directory, reportnamer.junit_last_reportname)
173
- html_report_filepath = File.join(output_directory, reportnamer.html_last_reportname)
174
173
  config = FastlaneCore::Configuration.create(
175
174
  Fastlane::Actions::TestsFromJunitAction.available_options,
176
175
  {
@@ -179,14 +178,18 @@ module TestCenter
179
178
  )
180
179
  junit_results = Fastlane::Actions::TestsFromJunitAction.run(config)
181
180
 
182
- {
181
+ info = {
183
182
  failed: junit_results[:failed],
184
183
  passing: junit_results[:passing],
185
184
  batch: batch,
186
185
  try_count: try_count,
187
- report_filepath: report_filepath,
188
- html_report_filepath: html_report_filepath
186
+ report_filepath: report_filepath
189
187
  }
188
+ if reportnamer.includes_html?
189
+ html_report_filepath = File.join(output_directory, reportnamer.html_last_reportname)
190
+ info[:html_report_filepath] = html_report_filepath
191
+ end
192
+ info
190
193
  end
191
194
 
192
195
  def quit_simulators
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.2.4"
3
+ VERSION = "3.2.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-test_center
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.4
4
+ version: 3.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lyndsey Ferguson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-27 00:00:00.000000000 Z
11
+ date: 2018-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: plist