diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -16,8 +16,9 @@ LOCAL_DEPS = ssl DOC_DEPS = asciideck -TEST_DEPS = $(if $(CI_ERLANG_MK),ci.erlang.mk) ct_helper +TEST_DEPS = $(if $(CI_ERLANG_MK),ci.erlang.mk) ct_helper havoc dep_ct_helper = git https://github.com/ninenines/ct_helper master +dep_havoc = git https://github.com/ankhers/havoc master # CI configuration. @@ -33,6 +34,12 @@ AUTO_CI_WINDOWS ?= OTP-19+ include erlang.mk +# Don't run the havoc test suite by default. + +ifndef FULL +CT_SUITES := $(filter-out havoc,$(CT_SUITES)) +endif + # Compile options. TEST_ERLC_OPTS += +'{parse_transform, eunit_autoexport}' |