From 354adf613bf5cd30aaf8cddb0f51d2ad22042b2a Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Tue, 22 Mar 2016 11:49:27 -0600 Subject: [PATCH] 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. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 400cf8450..163e108e3 100644 --- a/Makefile +++ b/Makefile @@ -43,6 +43,10 @@ clean: .PHONY: test test: build test-style test-unit test-flake8 +.PHONY: quicktest +quicktest: test-style + go test $(GO_PKGS) + ROOTFS := rootfs .PHONY: push