Files
satbd-explorer/Makefile
Alexandre Tuleu 5a44613055 Skips long test
By default they will be skipped, `make LONG=1` will run them
2016-01-20 16:04:58 +01:00

16 lines
187 B
Makefile

all: build check
build :
go build
ifdef LONG
short_option =
else
short_option = -short
endif
check :
go vet
go test $(short_option) -coverprofile=cover.out -covermode=count
golint