We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c1dc3 commit 6a55869Copy full SHA for 6a55869
src/kaocha/testable.clj
@@ -270,11 +270,13 @@
270
(doall testables)
271
(let [load-error? (some ::load-error testables)
272
types (set (:parallel-children-exclude *config*))
273
+ suites (:parallel-suites-exclude *config*)
274
futures (map #(do
275
(future
276
(binding [*config*
277
(cond-> *config*
278
(contains? types (:kaocha.testable/type %)) (dissoc :parallel)
279
+ (and (hierarchy/suite? %) (contains? suites (:kaocha.testable/desc %))) (dissoc :parallel)
280
true (update :levels (fn [x] (if (nil? x) 1 (inc x)))))]
281
(run-testable % test-plan))))
282
testables)]
0 commit comments