Hello all, how do I include in runner alias for exclude some pattern?
:runner
{:extra-deps {com.cognitect/test-runner
{:git/url ""
:sha "b6b3193fcc42659d7e46ecd1884a228993441182"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]} what sort of pattern? just yesterday I started using its metadata feature, worked well :)
Per https://github.com/cognitect-labs/test-runner#invoke-with-clojure--m-clojuremain the option for exclude is based on a keyword that identifies test functions to exclude via metadata. The "pattern" option is for matching namespaces to include via regex. There's also a keyword include option which is about test function metadata @fabrao