File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 290
290
(doall testables)
291
291
(let [load-error? (some ::load-error testables)
292
292
types (set (:parallel-children-exclude *config*))
293
- futures (doall ( map #(do
294
- (future
295
- (binding [*config*
296
- (cond-> *config*
297
- (contains? types (:kaocha.testable/type %)) (dissoc :parallel )
298
- true (update :levels (fn [x] (if (nil? x) 1 (inc x))))) ]
299
- (run-testable % test-plan))))
300
- testables) )]
293
+ futures (map #(do
294
+ (future
295
+ (binding [*config*
296
+ (cond-> *config*
297
+ (contains? types (:kaocha.testable/type %)) (dissoc :parallel )
298
+ true (update :levels (fn [x] (if (nil? x) 1 (inc x))))) ]
299
+ (run-testable % test-plan))))
300
+ testables)]
301
301
(comment (loop [result [] ; (ArrayBlockingQueue. 1024)
302
302
[test & testables] testables]
303
303
(if test
You can’t perform that action at this time.
0 commit comments