fix(Makefile): add quicktest target

This is good for running a quick test during dev to check for failures
without having to read a gazillion lines of output.
pull/429/head
Matt Butcher 9 years ago
parent 7601418ea1
commit 354adf613b

@ -43,6 +43,10 @@ clean:
.PHONY: test .PHONY: test
test: build test-style test-unit test-flake8 test: build test-style test-unit test-flake8
.PHONY: quicktest
quicktest: test-style
go test $(GO_PKGS)
ROOTFS := rootfs ROOTFS := rootfs
.PHONY: push .PHONY: push

Loading…
Cancel
Save