fastlane-plugin-test_center 3.8.13 → 3.8.14

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
  SHA256:
3
- metadata.gz: c149250cec69062041bc05b9156a4fa1461ef8bd27f6791bb99bf0a15223b4f6
4
- data.tar.gz: 57f956de2571a2d355a377458c6b06079d9a7627e4c57daab08b6fdfb2bb9bab
3
+ metadata.gz: 599b59e9ac6f3d4c3842f5826c0a4602b32ad0dd019396ac92dfe1db5b55f1af
4
+ data.tar.gz: 8b2ffe48dcbf4f4cc43069c439c07851f21b37093153d431f855b0060a2c8eae
5
5
  SHA512:
6
- metadata.gz: 7c003f0ddfd41a3d1d428e65a9418ca3595285a5298d66e4435b09d4bde506f4a9a7519cc3916177331f855561598b2ee5dcc6d78450f911cd05f58253697c0f
7
- data.tar.gz: b6ac34fb6296bc83247497caf6b576bb5a77c72bc32420a2b57779c6f2dc671d6a53f621947d5b9281ccce8aa6a7e920c93f380957952bea583e07f987e2cdaa
6
+ metadata.gz: 18740ee92788216be9f291f91b47593e9bd4e5f3fcb5de6e5ab00a29c748ca8a2f3c4389d7fcb1ed248a2325a0cbcd9f544d34b7985d9bb349fc8fbb8cda179f
7
+ data.tar.gz: 77a084f31b2bf4779f9fe7a55ab48d18fbb243e859018ac29f3d069d69bb5f93aa381d14d658cb985998b3ca206ff4c6ef1ea3e0a343e5db2768df6e5ae774e2
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  <img src="docs/test_center_banner.png" />
4
4
 
5
5
  # test_center plugin 🎯
6
- [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-test_center)
6
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-test_center) [![Actions Status](https://github.com/lyndsey-ferguson/fastlane-plugin-test_center/workflows/Run%20Tests/badge.svg)](https://github.com/lyndsey-ferguson/fastlane-plugin-test_center/actions)
7
7
 
8
8
  Have you ever spent too much time trying to fix fragile tests only to give up with nothing real to show? Use the `fastlane` actions from `test_center` to remove internal and external interference from your tests, so that you can focus on what makes 💰: features that customers love 😍.
9
9
 
@@ -19,7 +19,7 @@ module Fastlane
19
19
 
20
20
  # :nocov:
21
21
  def self.description
22
- "📲 Force-quits the com.apple.CoreSimulator.CoreSimulatorService."
22
+ "📲 Force-quits the com.apple.CoreSimulator.CoreSimulatorService to fix mysterious iOS Simulator issues."
23
23
  end
24
24
 
25
25
  def self.details
@@ -115,8 +115,7 @@ module TestCenter
115
115
 
116
116
  test_result_bundlepaths = sort_globbed_files("#{@source_reports_directory_glob}/#{@scheme}*.test_result")
117
117
  result_bundlename_suffix = ''
118
- result_bundlename_suffix = "-#{@reportnamer.report_count + 1}" if @reportnamer.report_count > 0
119
-
118
+ result_bundlename_suffix = "-#{@reportnamer.report_count}" if @reportnamer.report_count > 0
120
119
  collated_test_result_bundlepath = File.absolute_path("#{File.join(@output_directory, @scheme)}#{result_bundlename_suffix}.test_result")
121
120
  if test_result_bundlepaths.size > 1
122
121
  FastlaneCore::UI.verbose("Collating test_result bundles #{test_result_bundlepaths}")
@@ -130,7 +129,7 @@ module TestCenter
130
129
  CollateTestResultBundlesAction.run(config)
131
130
  FileUtils.rm_rf(test_result_bundlepaths - [collated_test_result_bundlepath])
132
131
  elsif test_result_bundlepaths.size == 1 && File.realdirpath(test_result_bundlepaths.first) != File.realdirpath(collated_test_result_bundlepath)
133
- FastlaneCore::UI.verbose("Copying test_result bundle #{test_result_bundlepaths.first}")
132
+ FastlaneCore::UI.verbose("Copying test_result bundle from #{test_result_bundlepaths.first} to #{collated_test_result_bundlepath}")
134
133
  FileUtils.mkdir_p(File.dirname(collated_test_result_bundlepath))
135
134
  FileUtils.mv(test_result_bundlepaths.first, collated_test_result_bundlepath)
136
135
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.8.13"
3
+ VERSION = "3.8.14"
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.8.13
4
+ version: 3.8.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lyndsey Ferguson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-09 00:00:00.000000000 Z
11
+ date: 2019-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -256,6 +256,7 @@ files:
256
256
  - lib/fastlane/plugin/test_center/actions/tests_from_xctestrun.rb
257
257
  - lib/fastlane/plugin/test_center/helper/html_test_report.rb
258
258
  - lib/fastlane/plugin/test_center/helper/junit_helper.rb
259
+ - lib/fastlane/plugin/test_center/helper/multi_scan.rb
259
260
  - lib/fastlane/plugin/test_center/helper/multi_scan_manager.rb
260
261
  - lib/fastlane/plugin/test_center/helper/multi_scan_manager/device_manager.rb
261
262
  - lib/fastlane/plugin/test_center/helper/multi_scan_manager/parallel_test_batch_worker.rb