fastlane-plugin-test_center 3.15.2 → 3.15.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7ed186518bf972a65bb1664e5843cfb5da505a93c216af4402ae2fecb6ed52f
|
|
4
|
+
data.tar.gz: 557cb341dbda37fb2eae18ac8f494ddff889039a95e0337a2f47122cd436c83c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b11864d9cc3a2863c0418b70da52e879fe8c281a85eba39c6c625fc33d96b9e437d95526e5d7b93bfbaa16a86904d9577ebb5c6de2ed7139b39fcb74d3989eac
|
|
7
|
+
data.tar.gz: 9eb0523c3ce1114b5e39fb1dcac9169fbcf6c5b1e519b8a573b18389277102ac1368b66adb09b874ffc0cf51f29357a79808d4fcd1b890d9809da71f09ed43c9
|
|
@@ -33,6 +33,7 @@ module Fastlane
|
|
|
33
33
|
testable_summaries = all_summaries.map(&:testable_summaries).flatten
|
|
34
34
|
failed = []
|
|
35
35
|
passing = []
|
|
36
|
+
skipped = []
|
|
36
37
|
failure_details = {}
|
|
37
38
|
testable_summaries.map do |testable_summary|
|
|
38
39
|
target_name = testable_summary.target_name
|
|
@@ -40,6 +41,8 @@ module Fastlane
|
|
|
40
41
|
all_tests.each do |t|
|
|
41
42
|
if t.test_status == 'Success'
|
|
42
43
|
passing << "#{target_name}/#{t.identifier.sub('()', '')}"
|
|
44
|
+
elsif t.test_status == 'Skipped'
|
|
45
|
+
skipped << "#{target_name}/#{t.identifier.sub('()', '')}"
|
|
43
46
|
else
|
|
44
47
|
test_identifier = "#{target_name}/#{t.identifier.sub('()', '')}"
|
|
45
48
|
failed << test_identifier
|
|
@@ -55,6 +58,7 @@ module Fastlane
|
|
|
55
58
|
{
|
|
56
59
|
failed: failed.uniq,
|
|
57
60
|
passing: passing.uniq,
|
|
61
|
+
skipped: skipped.uniq,
|
|
58
62
|
failure_details: failure_details
|
|
59
63
|
}
|
|
60
64
|
end
|
|
@@ -64,7 +68,7 @@ module Fastlane
|
|
|
64
68
|
#####################################################
|
|
65
69
|
|
|
66
70
|
def self.description
|
|
67
|
-
"☑️ Retrieves the failing and
|
|
71
|
+
"☑️ Retrieves the failing, passing, and skipped tests as reported in a xcresult bundle"
|
|
68
72
|
end
|
|
69
73
|
|
|
70
74
|
|
|
@@ -85,7 +89,8 @@ module Fastlane
|
|
|
85
89
|
def self.return_value
|
|
86
90
|
"A Hash with information about the test results:\r\n" \
|
|
87
91
|
"failed: an Array of the failed test identifiers\r\n" \
|
|
88
|
-
"passing: an Array of the passing test identifiers\r\n"
|
|
92
|
+
"passing: an Array of the passing test identifiers\r\n" \
|
|
93
|
+
"skipped: an Array of the skipped test identifiers\r\n"
|
|
89
94
|
end
|
|
90
95
|
|
|
91
96
|
def self.authors
|
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.15.
|
|
4
|
+
version: 3.15.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: 2021-
|
|
11
|
+
date: 2021-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|