kaocha

Official support channel: https://clojureverse.org/c/projects/kaocha
plexus 2019-08-19T12:37:26.088400Z

@rickmoynihan I feel like this has been discussed before, I'm open to having that configurable, so e.g. you can say

:default-suites [:unit :integration]
and have bin/kaocha without suite arguments run those two only. PR welcome. While this would make sense in core you could also do it as a plugin, so you can try it out without having to wait on anyone. Always happy to provide feedback if you decide to take a stab at this.

plexus 2019-08-19T12:37:54.089Z

@magnars I'm sorry I missed your stream, I've been in offline holiday mode the past week. Do you record/publish your streaming sessions?

2019-08-19T18:12:01.091200Z

Hi all, I come from GitHub Issue 30[1], I'm having the same issue where it's saying --focus-meta is an unknown option. I've confirmed that I'm using the right version of tools.cli. This is my command, I'm running it like this for now to ensure that everything aligns

lein with-profile +test run -m kaocha.runner --focus-meta :integration
I got it running once, it was nice 🙂 [1] https://github.com/lambdaisland/kaocha/issues/30

plexus 2019-08-22T08:30:50.091900Z

The filter plugin is always included

2019-08-22T15:05:13.092100Z

That's what the documentation said but the commands above wouldn't work without me explicitly including the plugin.

plexus 2019-08-26T14:44:43.102800Z

that's strange... if you have a public repo that reproduces this I'm happy to have a look

2019-08-26T15:22:15.103Z

Do I have to use the shorthand config? e.g. #kaocha/v1 {} I'll create a small example see if I can replicate this.

plexus 2019-08-26T16:05:16.103200Z

yes, unless you provide a complete and normalized configuration

2019-08-26T19:57:02.104Z

Ah that makes much more sense, I'll add the reader macro. I'm not a power user 🙂

2019-08-19T18:21:18.091500Z

I was missing an argument, I had to specify the test ID 😅 The corrected command should look like:

lein with-profile +test run -m kaocha.runner --focus-meta :integration :unit

2019-08-19T20:02:30.091700Z

Also, I believe the filter plugin is necessary :kaocha.plugin/filter.