From 7b5da290199fa0d668b8d9d8267e188b66da1eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Tue, 20 Nov 2018 13:23:59 +0100 Subject: Don't run long test suites by default The examples test suite is only useful once in a while in order to know whether examples were broken, for example before issuing a release. The new ws_autobahn test suite isolates the autobahn test suite so that it can be ignored by default. It's only useful to run it when working on the Websocket code or before issuing a release. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 40e653d..9c3e54a 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,12 @@ AUTO_CI_WINDOWS ?= OTP-19+ include erlang.mk +# Don't run the examples test suite by default. + +ifndef FULL +CT_SUITES := $(filter-out examples ws_autobahn,$(CT_SUITES)) +endif + # Compile options. ERLC_OPTS += +warn_missing_spec +warn_untyped_record -- cgit v1.2.3