fastlane-plugin-test_center 3.8.9 → 3.8.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/test_center/actions/collate_html_reports.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/collate_json_reports.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/collate_junit_reports.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/collate_test_result_bundles.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/multi_scan.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/quit_core_simulator_service.rb +5 -1
- data/lib/fastlane/plugin/test_center/actions/suppress_tests.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/suppress_tests_from_junit.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/suppressed_tests.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/tests_from_junit.rb +1 -1
- data/lib/fastlane/plugin/test_center/actions/tests_from_xctestrun.rb +1 -1
- data/lib/fastlane/plugin/test_center/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79d2194eae0819ad7461b738f4bf7cdab3a02de69373e18eabd3ed652d2f7168
|
4
|
+
data.tar.gz: 3d3b37e156f2b338d46a4747ed15fd270e9f286d42f924aed4e0facda26ede86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f17ba84daf8648720b568d9274a314dc9449a7dcbb509bcc2c6bc86a2c79d6f94d02f37031843df4612e3b5889f0a3be0ccc7cb2e12b51866ef8ca4ea07b7276
|
7
|
+
data.tar.gz: 9b21f9c85400837130d96edafd154cc5c1c1e38e073bf69c14a4f67c244d4788c3cdf76a9e3cb27de88aa8c88d5fd5c65c6c1e028af2f2380d2b2926d922c3ba
|
@@ -157,7 +157,7 @@ module Fastlane
|
|
157
157
|
#####################################################
|
158
158
|
# :nocov:
|
159
159
|
def self.description
|
160
|
-
"Combines multiple junit report files into one junit report file"
|
160
|
+
"🔷 Combines multiple junit report files into one junit report file"
|
161
161
|
end
|
162
162
|
|
163
163
|
def self.details
|
@@ -218,7 +218,7 @@ module Fastlane
|
|
218
218
|
|
219
219
|
# :nocov:
|
220
220
|
def self.description
|
221
|
-
"Uses scan to run Xcode tests a given number of times, with the option of batching and/or parallelizing them, only re-testing failing tests."
|
221
|
+
"♻️ Uses scan to run Xcode tests a given number of times, with the option of batching and/or parallelizing them, only re-testing failing tests."
|
222
222
|
end
|
223
223
|
|
224
224
|
def self.details
|
@@ -19,7 +19,7 @@ module Fastlane
|
|
19
19
|
|
20
20
|
# :nocov:
|
21
21
|
def self.description
|
22
|
-
"Force-quits the com.apple.CoreSimulator.CoreSimulatorService."
|
22
|
+
"📲 Force-quits the com.apple.CoreSimulator.CoreSimulatorService."
|
23
23
|
end
|
24
24
|
|
25
25
|
def self.details
|
@@ -31,6 +31,10 @@ module Fastlane
|
|
31
31
|
["lyndsey-ferguson/@lyndseydf"]
|
32
32
|
end
|
33
33
|
|
34
|
+
def self.category
|
35
|
+
:testing
|
36
|
+
end
|
37
|
+
|
34
38
|
def self.is_supported?(platform)
|
35
39
|
platform == :ios
|
36
40
|
end
|
@@ -61,7 +61,7 @@ module Fastlane
|
|
61
61
|
|
62
62
|
# :nocov:
|
63
63
|
def self.description
|
64
|
-
"Suppresses specific tests in a specific or all Xcode Schemes in a given project"
|
64
|
+
"🗜 Suppresses specific tests in a specific or all Xcode Schemes in a given project"
|
65
65
|
end
|
66
66
|
|
67
67
|
def self.available_options
|
@@ -48,7 +48,7 @@ module Fastlane
|
|
48
48
|
|
49
49
|
# :nocov:
|
50
50
|
def self.description
|
51
|
-
"Uses a junit xml report file to suppress either passing or failing tests in an Xcode Scheme"
|
51
|
+
"🗜 Uses a junit xml report file to suppress either passing or failing tests in an Xcode Scheme"
|
52
52
|
end
|
53
53
|
|
54
54
|
def self.available_options
|
@@ -54,7 +54,7 @@ module Fastlane
|
|
54
54
|
|
55
55
|
# :nocov:
|
56
56
|
def self.description
|
57
|
-
"Retrieves a list of tests that are suppressed in a specific or all Xcode Schemes in a project"
|
57
|
+
"🗜 Retrieves a list of tests that are suppressed in a specific or all Xcode Schemes in a project"
|
58
58
|
end
|
59
59
|
|
60
60
|
def self.available_options
|
@@ -72,7 +72,7 @@ module Fastlane
|
|
72
72
|
|
73
73
|
# :nocov:
|
74
74
|
def self.description
|
75
|
-
"Retrieves all of the tests from xctest bundles referenced by the xctestrun file"
|
75
|
+
"️️☑️ Retrieves all of the tests from xctest bundles referenced by the xctestrun file"
|
76
76
|
end
|
77
77
|
|
78
78
|
def self.available_options
|