File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -84,12 +84,14 @@ move_to_node1("stress")
84
84
# since it starts a lot of workers and can easily exceed the maximum memory
85
85
limited_worker_rss && move_to_node1 (" Distributed" )
86
86
87
- # Shuffle LinearAlgebra tests to the front, because they take a while, so we might
87
+ # Move LinearAlgebra and Pkg tests to the front, because they take a while, so we might
88
88
# as well get them all started early.
89
- linalg_test_ids = findall (x-> occursin (" LinearAlgebra" , x), tests)
90
- linalg_tests = tests[linalg_test_ids]
91
- deleteat! (tests, linalg_test_ids)
92
- prepend! (tests, linalg_tests)
89
+ for prependme in [" LinearAlgebra" , " Pkg" ]
90
+ prependme_test_ids = findall (x-> occursin (prependme, x), tests)
91
+ prependme_tests = tests[prependme_test_ids]
92
+ deleteat! (tests, prependme_test_ids)
93
+ prepend! (tests, prependme_tests)
94
+ end
93
95
94
96
import LinearAlgebra
95
97
cd (@__DIR__ ) do
You can’t perform that action at this time.
0 commit comments