fastlane-plugin-test_center 3.8.1 → 3.8.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dc24c07b13301a9e4d68341cf5056931458ab70f34aca5022b732e56f6b2977
|
4
|
+
data.tar.gz: a78788cd1e13a5ae2451cad5b1eb05dbad5e8656c9f50a70987ca561d7f6145e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 722389bcd79ac2c2d8c2f245ab047c5b1106f3eceb97c7dd956a2d8400241c8b9452a0ac08be12140c3446e894207f5a3a94c840769e4b8db5f524e36fca0107
|
7
|
+
data.tar.gz: d63b1a638372df7d38995ed66f964e05dedecb42c92480b2719e80dae4516912df0507d74a4134fddc88a1169e3aa3047e74c6a8dfb58992718f891066f75a42
|
@@ -73,11 +73,11 @@ module TestCenter
|
|
73
73
|
def expand_testsuites_to_tests
|
74
74
|
return if @invocation_based_tests
|
75
75
|
|
76
|
-
known_tests =
|
76
|
+
known_tests = []
|
77
77
|
@testables_tests.each do |testable, tests|
|
78
78
|
tests.each_with_index do |test, index|
|
79
79
|
if test.count('/') < 2
|
80
|
-
known_tests
|
80
|
+
known_tests += xctestrun_known_tests[testable]
|
81
81
|
test_components = test.split('/')
|
82
82
|
testsuite = test_components.size == 1 ? test_components[0] : test_components[1]
|
83
83
|
@testables_tests[testable][index] = known_tests.select { |known_test| known_test.include?(testsuite) }
|