fastlane-plugin-test_center 3.15.2 → 3.15.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7803bf468642bcd0cb4f690b348d9849e604a63670efc0e4f270fec079579013
4
- data.tar.gz: 1176ee96e31ace7572b053b2a955447aaf0ae94930167b178e2e83c03ef39ed5
3
+ metadata.gz: b7ed186518bf972a65bb1664e5843cfb5da505a93c216af4402ae2fecb6ed52f
4
+ data.tar.gz: 557cb341dbda37fb2eae18ac8f494ddff889039a95e0337a2f47122cd436c83c
5
5
  SHA512:
6
- metadata.gz: b19221fc40f6ed5582d828424f24ee715cc9208cd3a592bee8def42ad56068c6c66d2fe7689efc525608aeb17d07d04403bb74029fb17d94763815cc03a5f5b3
7
- data.tar.gz: dab38ff12ecc8d5f71a0ea4c617ecb796ff34a51c62740c7d982e00cac7ad2cb008c7e810ca039a49e574d728f0199fcdaa7e52e7d2c7080e0ea9239e5899df5
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 passing tests as reportedn an xcresult bundle"
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.15.2"
3
+ VERSION = "3.15.3"
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.15.2
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-01-17 00:00:00.000000000 Z
11
+ date: 2021-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json