fastlane-plugin-test_center 3.10.2 → 3.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/fastlane/plugin/test_center/actions/multi_scan.rb +4 -0
- data/lib/fastlane/plugin/test_center/helper/multi_scan_manager/retrying_scan_helper.rb +5 -1
- data/lib/fastlane/plugin/test_center/helper/multi_scan_manager/runner.rb +34 -0
- data/lib/fastlane/plugin/test_center/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '098e845a533aae1482f49c2265234f95e6b6415a6f389fca3956851f009841da'
|
4
|
+
data.tar.gz: 612fa05cd1d3c550ed344ecc34f9f7a54a4d50a701711e33c7154f496d05104e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd691d0fd30fc8a3a06d082f9a751a7101c1de6843819136d1fb18b66051435412bf8fe41606012ce65552096337a844ea1536896394b9ce6d679b3e80f00014
|
7
|
+
data.tar.gz: 25354716d6138969a45954a0f77429be98ea188e1a8fb9c4bda0b92300ea1d85df128526b65c4ef9e76575561f1aeddcb9c7fd9a9dd1133a6dbed3031af9dd21
|
data/README.md
CHANGED
@@ -91,6 +91,10 @@ For more information about how the `fastlane` plugin system works, check out the
|
|
91
91
|
|
92
92
|
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
93
93
|
|
94
|
+
## Supporter
|
95
|
+
|
96
|
+
I'm grateful to all of the people who contributed back to `test_center`, all the people who helped test for new features or bug fixes, but most importantly I am grateful to my wife who supports my crazy passion for making software.
|
97
|
+
|
94
98
|
## License
|
95
99
|
|
96
100
|
MIT
|
@@ -14,6 +14,10 @@ module Fastlane
|
|
14
14
|
class MultiScanAction < Action
|
15
15
|
def self.run(params)
|
16
16
|
params[:quit_simulators] = params._values[:force_quit_simulator] if params._values[:force_quit_simulator]
|
17
|
+
if params[:try_count] < 1
|
18
|
+
UI.important('multi_scan will not test any if :try_count < 0, setting to 1')
|
19
|
+
params[:try_count] = 1
|
20
|
+
end
|
17
21
|
|
18
22
|
strip_leading_and_trailing_whitespace_from_output_types(params)
|
19
23
|
|
@@ -93,6 +93,10 @@ module TestCenter
|
|
93
93
|
FastlaneCore::UI.important(":xcargs, #{xcargs}, contained 'build-for-testing', removing it")
|
94
94
|
xcargs.slice!('build-for-testing')
|
95
95
|
end
|
96
|
+
if xcargs.include?('-quiet')
|
97
|
+
FastlaneCore::UI.important('Disabling -quiet as failing tests cannot be found with it enabled.')
|
98
|
+
xcargs.gsub!('-quiet', '')
|
99
|
+
end
|
96
100
|
xcargs.gsub!(/-parallel-testing-enabled(=|\s+)(YES|NO)/, '')
|
97
101
|
retrying_scan_options = @reportnamer.scan_options.merge(
|
98
102
|
{
|
@@ -245,7 +249,7 @@ module TestCenter
|
|
245
249
|
junit: File.absolute_path(report_filepath)
|
246
250
|
}
|
247
251
|
)
|
248
|
-
@options[:only_testing] = @options[:only_testing] - Fastlane::Actions::TestsFromJunitAction.run(config).fetch(:passing, Hash.new).map(&:shellsafe_testidentifier)
|
252
|
+
@options[:only_testing] = (@options[:only_testing] || []) - Fastlane::Actions::TestsFromJunitAction.run(config).fetch(:passing, Hash.new).map(&:shellsafe_testidentifier)
|
249
253
|
if @options[:invocation_based_tests]
|
250
254
|
@options[:only_testing] = @options[:only_testing].map(&:strip_testcase).uniq
|
251
255
|
end
|
@@ -207,10 +207,44 @@ module TestCenter
|
|
207
207
|
File.absolute_path(output_directory),
|
208
208
|
@test_collector.testables.first
|
209
209
|
)
|
210
|
+
merge_single_testable_xcresult_with_final_xcresult(report_files_dir, File.absolute_path(output_directory))
|
210
211
|
FileUtils.cp_r("#{report_files_dir}/.", File.absolute_path(output_directory))
|
211
212
|
FileUtils.rm_rf(report_files_dir)
|
212
213
|
end
|
213
214
|
|
215
|
+
def merge_single_testable_xcresult_with_final_xcresult(testable_output_dir, final_output_dir)
|
216
|
+
reportnamer = ReportNameHelper.new(
|
217
|
+
@options[:output_types],
|
218
|
+
@options[:output_files],
|
219
|
+
@options[:custom_report_file_name]
|
220
|
+
)
|
221
|
+
return unless reportnamer.includes_xcresult?
|
222
|
+
|
223
|
+
xcresult_bundlename = reportnamer.xcresult_bundlename
|
224
|
+
src_xcresult_bundlepath = File.join(testable_output_dir, xcresult_bundlename)
|
225
|
+
dst_xcresult_bundlepath = File.join(final_output_dir, xcresult_bundlename)
|
226
|
+
|
227
|
+
# We do not need to merge if one of these do not exist
|
228
|
+
return unless File.exist?(src_xcresult_bundlepath) || File.exist?(dst_xcresult_bundlepath)
|
229
|
+
|
230
|
+
config = FastlaneCore::Configuration.create(
|
231
|
+
Fastlane::Actions::CollateXcresultsAction.available_options,
|
232
|
+
{
|
233
|
+
xcresults: [src_xcresult_bundlepath, dst_xcresult_bundlepath],
|
234
|
+
collated_xcresult: dst_xcresult_bundlepath
|
235
|
+
}
|
236
|
+
)
|
237
|
+
FastlaneCore::UI.verbose("Merging xcresult '#{src_xcresult_bundlepath}' to '#{dst_xcresult_bundlepath}'")
|
238
|
+
Fastlane::Actions::CollateXcresultsAction.run(config)
|
239
|
+
FileUtils.rm_rf(src_xcresult_bundlepath)
|
240
|
+
if @result_bundle_desired
|
241
|
+
xcresult_bundlename = reportnamer.xcresult_bundlename
|
242
|
+
test_result_bundlename = File.basename(xcresult_bundlename, '.*') + '.test_result'
|
243
|
+
test_result_bundlename_path = File.join(testable_output_dir, test_result_bundlename)
|
244
|
+
FileUtils.rm_rf(test_result_bundlename_path)
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
214
248
|
def symlink_result_bundle_to_xcresult(output_dir, reportname_helper)
|
215
249
|
return unless @result_bundle_desired && reportname_helper.includes_xcresult?
|
216
250
|
|
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.10.
|
4
|
+
version: 3.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lyndsey Ferguson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|