File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -308,6 +308,21 @@ good practice to use the `duct.test/with-system` macro. This will
308
308
(println "Goodbye.")))))
309
309
----
310
310
311
+ As `--test` uses Kaocha under the hood, you can customize how the tests
312
+ are run via a `tests.edn` file. See the
313
+ https://cljdoc.org/d/lambdaisland/kaocha/1.91.1392/doc/3-configuration[Kaocha
314
+ documentation] for a full explanation of how this works.
315
+
316
+ Finally, there are a few options you can use at the command line to
317
+ filter which tests will be run.
318
+
319
+ [horizontal]
320
+ `--test-config FILE` :: use a custom test config file
321
+ `--test-focus ID` :: limit tests to a single test ID, namespace or symbol
322
+ `--test-skip ID` :: skip tests with the test ID, namespace or symbol
323
+ `--test-focus-meta KEY` :: only run tests with the supplied metadata key
324
+ `--test-skip-meta KEY` :: skip tests with the supplied metadata key
325
+
311
326
=== Modules
312
327
313
328
A *module* groups multiple components together. Duct provides a number
You can’t perform that action at this time.
0 commit comments