fastlane-plugin-test_center 3.8.13 → 3.8.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/fastlane/plugin/test_center/actions/quit_core_simulator_service.rb +1 -1
- data/lib/fastlane/plugin/test_center/helper/multi_scan.rb +0 -0
- data/lib/fastlane/plugin/test_center/helper/multi_scan_manager/report_collator.rb +2 -3
- data/lib/fastlane/plugin/test_center/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 599b59e9ac6f3d4c3842f5826c0a4602b32ad0dd019396ac92dfe1db5b55f1af
|
4
|
+
data.tar.gz: 8b2ffe48dcbf4f4cc43069c439c07851f21b37093153d431f855b0060a2c8eae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
File without changes
|
@@ -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
|
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
|
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.
|
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-
|
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
|