mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 03:00:12 +00:00
Allow running specific retest suites
This commit is contained in:
parent
c3b09ba170
commit
eb79622903
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -6,6 +6,7 @@ OTPVSNCMD='io:fwrite("~s",[rebar_utils:otp_release()]), halt().'
|
|||
OTPVSN=$(shell erl -pa ebin/ -noshell -eval $(OTPVSNCMD))
|
||||
PLT_FILENAME=~/.dialyzer_rebar_$(OTPVSN)_plt
|
||||
LOG_LEVEL?=debug
|
||||
RT_TARGETS?=inttest
|
||||
|
||||
all:
|
||||
./bootstrap
|
||||
|
@ -73,6 +74,6 @@ test_eunit: all
|
|||
@$(REBAR) eunit
|
||||
|
||||
test_inttest: all deps
|
||||
@$(RETEST) -l $(LOG_LEVEL) inttest
|
||||
@$(RETEST) -l $(LOG_LEVEL) $(RT_TARGETS)
|
||||
|
||||
travis: clean debug xref clean all deps test
|
||||
|
|
Loading…
Reference in a new issue