From 62684cfaaff153700d61b8f94a745577751cbf4b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?=
To use the CI plugin you must first configure which versions -of Erlang/OTP will be used. Erlang.mk provides three separate -configuration variables depending on whether you need a normal -OTP release, a HiPE-enabled release or an ErLLVM-enabled release.
At the time of writing, this is how you would test against all -the most recent patch releases of Erlang/OTP 19 and above:
CI_OTP = OTP-19.0.7 OTP-19.1.6 OTP-19.2.3 OTP-19.3.6.2 OTP-20.0.4
If you want to test against HiPE and ErLLVM but only with the -latest version of Erlang/OTP, the following could work:
CI_HIPE = $(lastword $(CI_OTP)) -CI_ERLLVM = $(CI_HIPE)
Consult the OTP version management chapter for more +of Erlang/OTP will be used.
At the time of writing, this is how you would test against all +the most recent patch releases of Erlang/OTP 19 and above:
CI_OTP = OTP-19.0.7 OTP-19.1.6 OTP-19.2.3 OTP-19.3.6.2 OTP-20.0.4
Consult the OTP version management chapter for more information about Erlang/OTP versions and customization of the Erlang/OTP builds.
The recommended way to run the ci
target is with the option
-k
. It will ensure that tests are run for all configured
diff --git a/guide/coverage.html b/guide/coverage.html
index 85d5935..dffab2d 100644
--- a/guide/coverage.html
+++ b/guide/coverage.html
@@ -48,10 +48,12 @@ report that Erlang.mk generates is however common
to all test frameworks and might be more useful.
By default Erlang.mk will include all the applications in the code coverage report, except external dependencies.
To include some dependencies in the report, you can
define the COVER_DEPS
variable:
COVER_DEPS = cowlib
When using multi application repositories you can exclude
-some applications by defining the COVER_APPS
variable:
COVER_APPS = presence backend
By default Erlang.mk will store coverdata files and
+some applications by defining the COVER_APPS
variable:
COVER_APPS = presence backend
By default Erlang.mk will include all modules in the +cover report.
To exclude some modules from the report, you can
+define the COVER_EXCLUDE_MODS
variable:
COVER_EXCLUDE_MODS = cowboy_app cowboy_sup
By default Erlang.mk will store coverdata files and
code coverage reports under the cover/ directory. The
variables COVER_DATA_DIR
and COVER_REPORT_DIR
can be
-set to use a different location.
The target all.coverdata
will take all existing
+set to use a different location.