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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f163d51e185b4f2182dedc485cd19e29efe7aa1a6e05c238048738011255a12
|
4
|
+
data.tar.gz: 1be25dd1130e5f77d7362a8598d8d7467866722ea1b8b38ff1747364645de5d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 =
|
20
|
-
|
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}'!")
|
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.
|
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-
|
11
|
+
date: 2019-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|