Replies: 1 comment 4 replies
-
I'd have to look back at Clojure's test runner to see when that function usually gets called. It could be that jovial needs to explicitly call it. However, I'm also curious if you have more context on the use case. Is this a reporting-related use case where you want something custom printed somewhere? Or is it some kind of cleanup task? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi folks,
I'm porting an older project that previously relied on the clojuresque gradle plugin to clojurephant, and I'm running into a bit of a problem with the JUnit integration. My test suite defines a custom
report
hook for:end-test-var
. When I execute the test suite in IntelliJ using Cursive, that method instead gets called as expected, but when executing./gradlew test
(using the Jovial integration), it isn't called. Can anybody point me towards why that might be happening and how to fix it? I've already tried using(defmethod dev.clojurephant.jovial.engine.clojure-test/jovial-report :end-test-var …)
instead of(defmethod clojure.test/report :end-test-var …)
, but to no avail.Thanks,
Niels
Beta Was this translation helpful? Give feedback.
All reactions