We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b23162 commit 165bd62Copy full SHA for 165bd62
CHANGELOG.md
@@ -1,11 +1,9 @@
1
# Unreleased
2
3
-## Added
4
-
5
-## Fixed
6
7
## Changed
8
+- Always make the notifier plugin a no-op in CI environments, so when `(= "true" (getenv "CI"))`
+
9
# 1.89.1380 (2024-05-07 / d10b0de)
10
11
src/kaocha/plugin/notifier.clj
@@ -172,7 +172,7 @@
172
(::notifications? config true)))))
173
174
(post-run [result]
175
- (when (::notifications? result)
+ (when (and (::notifications? result) (not (= (System/getenv "CI") "true")))
176
(if-let [command (::command result)]
177
(run-command command result)
178
(send-tray-notification result)))
0 commit comments