File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 104
104
(::testable/load-error %))
105
105
(testable/test-seq test-plan))
106
106
(if (not (zero? (count (filter ::testable/skip (testable/test-seq-with-skipped test-plan)))))
107
- (output/warn (str " No tests were found and some tests were"
108
- " skipped; check for misspelled settings"
109
- " or combinations of settings that no tests"
110
- " satisfy." ))
111
- (output/warn (str " No tests were found. This may be an issue in your test configuration."
112
- " To investigate, check the :test-paths and :ns-patterns keys in tests.edn." ))
113
- )
107
+ (output/warn (format (str " All %d tests were skipped."
108
+ " Check for misspelled settings in your Kaocha test configuration"
109
+ " or incorrect focus or skip filters." )
110
+ (count (testable/test-seq-with-skipped test-plan))))
111
+ (output/warn (str " No tests were found. This may be an issue in your Kaocha test configuration."
112
+ " To investigate, check the :test-paths and :ns-patterns keys in tests.edn." )))
114
113
(throw+ {:kaocha/early-exit 0 }))
115
114
116
115
(when (find-ns 'matcher-combinators.core)
You can’t perform that action at this time.
0 commit comments