Merge pull request #941 from dotcloud/makefile_test_subpackages

gofmt and test sub directories in makefile
This commit is contained in:
Guillaume J. Charmes 2013-06-20 11:18:37 -07:00
commit 930e1d8830
3 changed files with 14 additions and 11 deletions

View File

@ -74,6 +74,9 @@ endif
test: all
@(cd $(DOCKER_DIR); sudo -E go test $(GO_OPTIONS))
testall: all
@(cd $(DOCKER_DIR); sudo -E go test ./... $(GO_OPTIONS))
fmt:
@gofmt -s -l -w .