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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c23ba2116da10db89626e43c151091eef3f4edf0
|
4
|
+
data.tar.gz: 441930e849fff38b59807163b7afa091565ff6fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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}"
|
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.
|
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
|
+
date: 2018-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|