fastlane-plugin-try_scan 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b2cd7acb930212c6e8cf756c89e71741878e510c46af3f3f747feaafc3d5bac
|
4
|
+
data.tar.gz: 8e11f9f1caf48d396983cfd2aabdb30c49d5da44a7ef0db43ec4314765dbb7aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98f4a9b2f8db939dcf38507ad52ad275799b56a14cb3cc804fa20f9133e6bc01a7106ca3c38709d71b698941fff16b9b40b4330107b19545a2053810eff565a1
|
7
|
+
data.tar.gz: 8b0bcc7346f9fc389946e74fd1e22880e1f1cf82199c82f3cc3d2c2c21f416ad8ac84e734a130de5d62114c84c968d29a2c32d4073d37e6d34479430994d469b
|
@@ -112,14 +112,18 @@ module TryScanManager
|
|
112
112
|
@options[:build_for_testing] = nil
|
113
113
|
end
|
114
114
|
|
115
|
-
|
116
|
-
|
115
|
+
xcargs = []
|
116
|
+
if @options[:try_parallel]
|
117
|
+
xcargs << '-parallel-testing-enabled YES'
|
117
118
|
if @options[:parallel_workers] || @options[:concurrent_workers]
|
118
119
|
workers_count = [@options[:parallel_workers].to_i, @options[:concurrent_workers].to_i].max
|
119
120
|
xcargs << "-parallel-testing-worker-count #{workers_count}"
|
121
|
+
@options[:concurrent_workers] = nil
|
120
122
|
end
|
121
|
-
|
123
|
+
else
|
124
|
+
xcargs << '-parallel-testing-enabled NO'
|
122
125
|
end
|
126
|
+
@options[:xcargs] = "#{@options[:xcargs].to_s} #{xcargs.join(' ')}"
|
123
127
|
end
|
124
128
|
|
125
129
|
def update_scan_options(failed_tests)
|