Liking cljdoc? Tell your friends :D

kaocha.config


apply-cli-argsclj

(apply-cli-args config args)
source

apply-cli-optsclj

(apply-cli-opts config options)
source

binding-mapclj

(binding-map config)
(binding-map config throw-errors?)

Get the dynamic bindings configured in the configuration, and turn them into a var->value mapping to be used with [[clojure.core/with-bindings]].

This will ignore unkown vars/namespaces, because they may not have loaded yet.

Get the dynamic bindings configured in the configuration, and turn them into a
var->value mapping to be used with [[clojure.core/with-bindings]].

This will ignore unkown vars/namespaces, because they may not have loaded yet.
sourceraw docstring

ConfigSourcecljprotocol

read-configclj

(read-config source opts)
source

current-readerclj

source

default-configclj

(default-config)
source

load-configclj

(load-config)
(load-config source)
(load-config source opts)

Loads and returns configuration from source or the file "tests.edn" if called without arguments.

If the config value loaded from source is nil, it returns the default configuration, which is the result of (default-config).

Accepts various types as source:

  • File loads from a file from the file system, provided it exists
  • Object coerces to File, treated as the single argument to (io/file), like a string path
  • URL treated as a resource on the classpath
  • nil returns the default configuration

The list of supported types can be extended by extending the ConfigSource protocol.

opts can be used to affect some aspects of loading, which is dependent on the source's ConfigSource implementation. For the sources supported out of the box, aero is used to parse the raw data. It uses opts in the following way:

(:profile opts) can be specified to select an Aero profile (:aero/read-config-opts opts) is passed to aero/read-config

By default, when loading from something that coerces to a File, Aero will try to resolve #include references as resources first, then files. This is the default behaviour of Aero (aero/adaptive-resolver) and is kept for backwards-compatibility.

When loading from a resource (URL), we tell Aero to only try resolving #includes to resources (aero/resource-resolver) to try and be less surprising.

These default choices can be overridden by setting another resolver in opts:

{:aero/read-config-opts {:resolver resolver-to-use}}

Loads and returns configuration from `source` or the file "tests.edn"
if called without arguments.

If the config value loaded from `source` is nil, it returns the default
configuration, which is the result of `(default-config)`.

Accepts various types as `source`:
- `File`   loads from a file from the file system, provided it exists
- `Object` coerces to `File`, treated as the single argument to (io/file),
            like a string path
- `URL`    treated as a resource on the classpath
- `nil`    returns the default configuration

The list of supported types can be extended by extending
the `ConfigSource` protocol.

`opts` can be used to affect some aspects of loading, which is dependent on
the `source`'s `ConfigSource` implementation. For the `source`s supported
out of the box, [aero](https://github.com/juxt/aero) is used to parse the raw
data. It uses `opts` in the following way:

`(:profile opts)` can be specified to select an Aero profile
`(:aero/read-config-opts opts)` is passed to `aero/read-config`

By default, when loading from something that coerces to a `File`, Aero will
try to resolve `#include` references as resources first, then files. This is
the default behaviour of Aero (`aero/adaptive-resolver`) and is kept for
backwards-compatibility.

When loading from a resource (`URL`), we tell Aero to only try resolving
`#include`s to resources (`aero/resource-resolver`) to try and be less
surprising.

These default choices can be overridden by setting another resolver in `opts`:

`{:aero/read-config-opts {:resolver resolver-to-use}}`
sourceraw docstring

merge-configclj

(merge-config c1 c2)
source

normalizeclj

(normalize config)
source

normalize-plugin-namesclj

(normalize-plugin-names plugins)
source

normalize-test-suiteclj

(normalize-test-suite m)
source

read-config-sourceclj

(read-config-source source {:aero/keys [read-config-opts] :as opts})
source

replace-by-defaultclj

(replace-by-default config k)
source

resolve-reporterclj

(resolve-reporter reporter)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close