fastlane-plugin-test_center 3.5.6 → 3.5.7
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: 3fd3936616d9ce3a2c073a4419a3925a3b2f1e72
|
4
|
+
data.tar.gz: 03cdd178e6c5df65e2d970fc9ae2bf690547f06b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ab84bf3e669a6dd65cabf16baa48a835b2bb2b0dd49a01dbdcf2e1689e33681b7e9967280bdf6655efdb7cdce59245f9372e73ec23b1687ca24fa46d7cd69a5
|
7
|
+
data.tar.gz: 443a1f79ac2a3b101aefeaa4410a2a5f16f33f00fc6b18716a2642711d3e350a19f4e475b04595a42b6deccb533134b654edbf9472e2a54f408b8bd1603b69e8
|
@@ -52,6 +52,11 @@ module TestCenter
|
|
52
52
|
)
|
53
53
|
output_directory = @output_directory
|
54
54
|
testable_tests = @test_collector.testables_tests[testable]
|
55
|
+
if testable_tests.empty?
|
56
|
+
FastlaneCore::UI.important("There are no tests to run in testable '#{testable}'. Skipping")
|
57
|
+
return true
|
58
|
+
end
|
59
|
+
|
55
60
|
if @batch_count > 1 || @testables_count > 1
|
56
61
|
current_batch = 1
|
57
62
|
testable_tests.each_slice((testable_tests.length / @batch_count.to_f).round).to_a.each do |tests_batch|
|