fastlane-plugin-test_center 3.8.10 → 3.8.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
  SHA256:
3
- metadata.gz: 79d2194eae0819ad7461b738f4bf7cdab3a02de69373e18eabd3ed652d2f7168
4
- data.tar.gz: 3d3b37e156f2b338d46a4747ed15fd270e9f286d42f924aed4e0facda26ede86
3
+ metadata.gz: 5f163d51e185b4f2182dedc485cd19e29efe7aa1a6e05c238048738011255a12
4
+ data.tar.gz: 1be25dd1130e5f77d7362a8598d8d7467866722ea1b8b38ff1747364645de5d4
5
5
  SHA512:
6
- metadata.gz: f17ba84daf8648720b568d9274a314dc9449a7dcbb509bcc2c6bc86a2c79d6f94d02f37031843df4612e3b5889f0a3be0ccc7cb2e12b51866ef8ca4ea07b7276
7
- data.tar.gz: 9b21f9c85400837130d96edafd154cc5c1c1e38e073bf69c14a4f67c244d4788c3cdf76a9e3cb27de88aa8c88d5fd5c65c6c1e028af2f2380d2b2926d922c3ba
6
+ metadata.gz: c3a2f416186c88d7309186f6084c975f93aef347634695923e7e178924974347c14459b7e3d04df56b87377e1b3f83f92d6b0702b19a73faedfbac7094e79afe
7
+ data.tar.gz: 958eaca60595e81126690f498db4884fc8ef631f85270979111a65cd81b5786d5bf3d9d16ab199b915cf115f3e64bb4fbb2fb83609b33edccc1cb715162e53b4
@@ -16,14 +16,20 @@ module Fastlane
16
16
  next if ignoredTestables.include? testable_name
17
17
 
18
18
  xctest_path = xctest_bundle_path(xctestrun_rootpath, xctestrun_config)
19
- test_identifiers = XCTestList.tests(xctest_path)
20
- UI.verbose("Found the following tests: #{test_identifiers.join("\n\t")}")
21
-
19
+ test_identifiers = []
20
+ if xctestrun_config.key?('OnlyTestIdentifiers')
21
+ test_identifiers = xctestrun_config['OnlyTestIdentifiers']
22
+ UI.verbose("Identifiers after adding onlytest tests: #{test_identifiers.join("\n\t")}")
23
+ else
24
+ test_identifiers = XCTestList.tests(xctest_path)
25
+ UI.verbose("Found the following tests: #{test_identifiers.join("\n\t")}")
26
+ end
22
27
  if xctestrun_config.key?('SkipTestIdentifiers')
23
28
  test_identifiers = subtract_skipped_tests_from_test_identifiers(
24
29
  test_identifiers,
25
30
  xctestrun_config['SkipTestIdentifiers']
26
31
  )
32
+ UI.verbose("Identifiers after removing skipped tests: #{test_identifiers.join("\n\t")}")
27
33
  end
28
34
  if test_identifiers.empty? && !invocation_based_tests
29
35
  UI.error("No tests found in '#{xctest_path}'!")
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "3.8.10"
3
+ VERSION = "3.8.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.8.10
4
+ version: 3.8.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: 2019-10-18 00:00:00.000000000 Z
11
+ date: 2019-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json