fastlane-plugin-test_center 3.5.10 → 3.5.11

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
  SHA1:
3
- metadata.gz: e2f64dd90cd40d23bc5af62990c5a3cec86d729c
4
- data.tar.gz: 9972b63261d62a37533ab8448ec97853faeca89f
3
+ metadata.gz: c23ba2116da10db89626e43c151091eef3f4edf0
4
+ data.tar.gz: 441930e849fff38b59807163b7afa091565ff6fe
5
5
  SHA512:
6
- metadata.gz: c585ac7539733cecf79d16bc09abbc31169e08a31464ddc3d00c663654d261f4dde76c24fd15ec273e65b2874f027fe6d073683299fa9260d04f5855087d10da
7
- data.tar.gz: e291cd3e9d74dccdec5f9eb6f01074b3bee7b015cbffcec5b25eabcba3e99fda5f344c4bb44bbf18b4a21900a048e193cb4217ac6bfc9843a1f95313c667e6a4
6
+ metadata.gz: c3a6e7b763364dd834cdd16a7a0fdc4fa1f58260d2aeae7f9c2667633ec456b4bcb3448cf716a14d4128837533be1ccb60f09b3695ceb314cdfa35e5427b1509
7
+ data.tar.gz: 610565db975ea056313ae101a13f569de6522027c374577d530ad7c7292af96a81bb5f67b38a77fb8a743a1358f031600fc0ca20ef81fef18c6090c2d98edd3f
@@ -4,6 +4,7 @@ module Fastlane
4
4
  module Actions
5
5
  class TestsFromXctestrunAction < Action
6
6
  def self.run(params)
7
+ UI.verbose("Getting tests from xctestrun file at '#{params[:xctestrun]}'")
7
8
  return xctestrun_tests(params[:xctestrun])
8
9
  end
9
10
 
@@ -15,8 +16,11 @@ module Fastlane
15
16
  next if testable_name == '__xctestrun_metadata__'
16
17
 
17
18
  test_identifiers = XCTestList.tests(xctest_bundle_path(xctestrun_rootpath, xctestrun_config))
19
+ UI.verbose("Found the following tests: #{test_identifiers.join("\n\t")}")
18
20
  if xctestrun_config.key?('SkipTestIdentifiers')
19
- test_identifiers.reject! { |test_identifier| xctestrun_config['SkipTestIdentifiers'].include?(test_identifier) }
21
+ skipped_tests = xctestrun_config['SkipTestIdentifiers']
22
+ UI.verbose("Removing skipped tests: #{skipped_tests.join("\n\t")}")
23
+ test_identifiers.reject! { |test_identifier| skipped_tests.include?(test_identifier) }
20
24
  end
21
25
  tests[testable_name] = test_identifiers.map do |test_identifier|
22
26
  "#{testable_name.shellescape}/#{test_identifier}"
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.5.10"
3
+ VERSION = "3.5.11"
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.5.10
4
+ version: 3.5.11
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-11-11 00:00:00.000000000 Z
11
+ date: 2018-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json