fastlane-plugin-test_center 3.5.1 → 3.5.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c203e7239f9333061d104a6d178b5d2b17ea4564
|
4
|
+
data.tar.gz: 9b4976f42a311fb15aeaca69e8b691d6d65b46ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ce989cc5a16a223345e742d9286c31c7afcf783f88d7fe02f14375ea71c27096954341c3f98e460ac3b5cb5048a3076fd09ac74ff4d6831b583ccca94de1cb4
|
7
|
+
data.tar.gz: 16b63ea73bd14004a0d4db5e1d7837ed8620017e8e9b79f12a252dae2522c34e3e8faee3d94f7767d8a55e491e2ed7cffa84f42bca3c5c3902d9fa7fc9e82743
|
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
|
2
|
-
|
2
|
+
|
3
3
|
<img src="docs/test_center_banner.png" />
|
4
|
-
-->
|
5
4
|
|
6
5
|
# test_center plugin 🎯
|
7
6
|
[](https://rubygems.org/gems/fastlane-plugin-test_center)
|
@@ -45,7 +44,7 @@ lane :sweep do
|
|
45
44
|
test_run_block = lambda do |testrun_info|
|
46
45
|
failed_test_count = testrun_info[:failed].size
|
47
46
|
|
48
|
-
if
|
47
|
+
if failed_test_count > 0
|
49
48
|
UI.important('The run of tests would finish with failures due to fragile tests here.')
|
50
49
|
|
51
50
|
try_attempt = testrun_info[:try_count]
|
@@ -63,7 +62,7 @@ lane :sweep do
|
|
63
62
|
testrun_completed_block: test_run_block
|
64
63
|
)
|
65
64
|
unless result[:failed_testcount].zero?
|
66
|
-
UI.info("There are #{
|
65
|
+
UI.info("There are #{result[:failed_testcount]} legitimate failing tests")
|
67
66
|
end
|
68
67
|
end
|
69
68
|
```
|
@@ -75,7 +74,7 @@ This plugin makes testing your iOS app easier by providing you actions that give
|
|
75
74
|
`multi_scan` began when I engineered an action to only re-run the failed tests in order to determine which ones were truly failing, or just failing randomly due to a fragile infrastructure. This action morphed into an entire plugin with many actions related to tests.
|
76
75
|
|
77
76
|
This fastlane plugin includes the following actions:
|
78
|
-
- [`multi_scan`](#multi_scan): gives you control over how your tests are exercised.
|
77
|
+
- [`multi_scan`](#multi_scan-): gives you control over how your tests are exercised.
|
79
78
|
- [`suppress_tests_from_junit`](#suppress_tests_from_junit): from a test report, suppresses tests in your project.
|
80
79
|
- [`suppress_tests`](#suppress_tests): from a provided list, suppresses tests in your project.
|
81
80
|
- [`suppressed_tests`](#suppressed_tests): returns a list of the suppressed tests in your project.
|
@@ -66,11 +66,11 @@ module Fastlane
|
|
66
66
|
File.dirname(other_activity_log_path),
|
67
67
|
File.basename(other_activity_log_path, '.*')
|
68
68
|
)
|
69
|
-
sh("gunzip -k -S .xcactivitylog #{other_activity_log_path}", print_command: false, print_command_output: false)
|
70
|
-
sh("gunzip -S .xcactivitylog #{base_activity_log_path}", print_command: false, print_command_output: false)
|
71
|
-
sh("cat #{gunzipped_other_filepath} > #{gunzipped_base_filepath}", print_command: false, print_command_output: false)
|
69
|
+
sh("gunzip -k -S .xcactivitylog '#{other_activity_log_path}'", print_command: false, print_command_output: false)
|
70
|
+
sh("gunzip -S .xcactivitylog '#{base_activity_log_path}'", print_command: false, print_command_output: false)
|
71
|
+
sh("cat '#{gunzipped_other_filepath}' > '#{gunzipped_base_filepath}'", print_command: false, print_command_output: false)
|
72
72
|
FileUtils.rm(gunzipped_other_filepath)
|
73
|
-
sh("gzip -S .xcactivitylog #{gunzipped_base_filepath}", print_command: false, print_command_output: false)
|
73
|
+
sh("gzip -S .xcactivitylog '#{gunzipped_base_filepath}'", print_command: false, print_command_output: false)
|
74
74
|
end
|
75
75
|
|
76
76
|
def self.collate_testsummaries_plist(base_testsummaries_plist_filepath, other_testsummaries_plist_filepath)
|
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.5.
|
4
|
+
version: 3.5.2
|
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-07-
|
11
|
+
date: 2018-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|