Fork me on GitHub
#boot
<
2016-12-03
>
donaldball02:12:28

It’s idiomatic in leiningen to mark tests with metadata and include or exclude sets of them using lein test subtasks. Is there a similar idiom in boot?

aengelberg07:12:33

Does Boot have an equivalent to Leiningen's checkouts directory?

martinklepsch11:12:06

@aengelberg There's :checkouts in the boot environment that you can set to a value like what you pass as :dependencies. When a dependency in the checkouts list is updated in your ~/.m2 it will replace the old version on the classpath

aengelberg23:12:34

@martinklepsch: that functionality doesn't sound as useful as leiningen checkouts. The goal is for another project on my file system to make its source paths available in the classpath of the parent project. Then I can clojure.tools.namespace.repl/refresh which will pick those up.