You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# we're not allowed to skip tests, so make sure we will mark them as such
173
-
all_tests =copy(tests)
174
-
if!isempty(skip_tests)
175
-
@error"Skipping the following tests: $(join(skip_tests, ", "))"
176
-
filter!(!in(skip_tests), tests)
177
-
end
178
-
else
179
-
if!isempty(skip_tests)
180
-
@info"Skipping the following tests: $(join(skip_tests, ", "))"
181
-
filter!(!in(skip_tests), tests)
182
-
end
183
-
all_tests =copy(tests)
184
-
end
185
-
186
149
# determine parallelism
187
150
if!set_jobs
188
151
cpu_jobs = Sys.CPU_THREADS
189
152
memory_jobs =Int(Sys.free_memory()) ÷ (2*2^30)
190
153
jobs =min(cpu_jobs, memory_jobs)
191
154
end
192
-
@info"Running $jobs tests in parallel. If this is too many, specify the `--jobs` argument to the tests, or set the JULIA_CPU_THREADS environment variable."
155
+
@info"Running $jobs tests in parallel. If this is too many, specify the `--jobs` argument to the tests, or set the `JULIA_CPU_THREADS` environment variable."
193
156
194
157
# add workers
195
158
const test_exeflags = Base.julia_cmd()
@@ -481,7 +444,7 @@ for (testname, (resp,)) in results
0 commit comments