Fork me on GitHub
#kaocha
<
2019-07-13
>
jkrasnay20:07:25

Hi folks, just started using Kaocha, running into a problem when I try to skip some of my tests. Kaocha fails with an exception like this:

Exception in thread "main" java.lang.IllegalArgumentException: Don't know how to create ISeq from: clojure.lang.Symbol, compiling:(/private/var/folders/6k/qwsbhrf9291gjy8vs1nyyq7h0000gn/T/form-init1642446353048835536.clj:1:125)

jkrasnay20:07:55

Looking at that file, it just contains this:

(ns .private.var.folders.6k.qwsbhrf9291gjy8vs1nyyq7h0000gn.T.form-init1642446353048835536.clj
  (:require
    ))

jkrasnay20:07:23

If I take out the skip configuration, Kaocha seems to work fine. Any ideas what’s going on here?

jkrasnay20:07:05

Found my problem. I had this in my tests.edn

:skip some.test.namespace
…instead of this…
:skip [some.test.namespace]