Fork me on GitHub
#boot
<
2018-05-23
>
annarcana11:05:05

I have a couple questions about boot-test. I'm working on setting up integration tests for a full-stack web project, where I need to compile both CLJS and CLJ. I've a run-tests task that does (comp (watch) (cljs :optimizations :none) (test) (notify :audible true)). I've noticed two things: 1. The CLJS compilation appears run every time in full, even when no changes at all happen to the CLJS files 2. notify only gives me the audible sound on test success. On fail it stays silent. Any idea how to fix these?

ska19:05:22

Do I find some helper fns somewhere in boot to get parent poms to a given pom? Ideally including download. Something like https://github.com/technomancy/lein-licenses/blob/master/src/leiningen/licenses.clj#L51 and https://github.com/technomancy/lein-licenses/blob/master/src/leiningen/licenses.clj#L37

geoffs19:05:31

@jarcane put notify before the test task in the pipeline. The reason your not getting sound is because the test task throws on failure thus aborting any tasks afterwards

👍 4
geoffs19:05:02

I usually put it first thing after watch

ska19:05:16

So, I created a worker in which in could require boot.pom but boot.pom/parse-xml doesn't give me the parent, even though https://github.com/boot-clj/boot/blob/master/boot/worker/src/boot/pom.clj#L49 looks like it should. /me confused

ska20:05:25

Could anyone of you please cut a new 2.8.0 snapshot relase? I'd love to try the parent features out.