Skip to content

Commit

Permalink
Add warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
alysbrooks committed Mar 8, 2022
1 parent 1c173e3 commit 1748ba6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/kaocha/api.clj
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,12 @@
(testable/test-seq test-plan))
(output/warn (str "No tests were found, make sure :test-paths and "
":ns-patterns are configured correctly in tests.edn."))
(throw+ {:kaocha/early-exit 0 }))
(throw+ {:kaocha/early-exit 0}))
(when (:parallel config)
(output/warn (str "Parallelization enabled. This is a beta "
"feature. If you encounter errors, try "
"running with the feature disabled and "
"consider filing a PR.")))
(when (find-ns 'matcher-combinators.core)
(require 'kaocha.matcher-combinators))

Expand Down

0 comments on commit 1748ba6

Please sign in to comment.