mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 04:10:24 +00:00
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.
This commit is contained in:
parent
386df43ea4
commit
7b5da29019
4 changed files with 96 additions and 48 deletions
6
Makefile
6
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue