Skip to content

Commit

Permalink
try reducing the number of worker processes to 4 to avoid Travis OOM …
Browse files Browse the repository at this point in the history
…killer (JuliaLang#11553)
  • Loading branch information
stevengj committed Aug 31, 2015
1 parent 168460b commit 48e1449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ end
cd(dirname(@__FILE__)) do
n = 1
if net_on
n = min(8, CPU_CORES, length(tests))
n = min(4, CPU_CORES, length(tests))
n > 1 && addprocs(n; exeflags=`--check-bounds=yes --depwarn=error`)
blas_set_num_threads(1)
end
Expand Down

0 comments on commit 48e1449

Please sign in to comment.