Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Carranza <pcarranza@gmail.com>2016-11-28 22:24:40 +0300
committerAhmad Sherif <me@ahmadsherif.com>2016-11-29 21:31:34 +0300
commit3309c5e60b7299d0a0bf48157b2b0f655b076493 (patch)
tree1799672be92e78fd9d36345238397b6ed69dfdcc
parent4d4a97db373eda4a2662f30e940f6a205007e126 (diff)
Add makefile for tests
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 89802b660..7570d5610 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,7 @@
-all: build
+all: test build
build:
go build -o git-daemon-server cmd/server/main.go
+
+test:
+ cd server ; go test ; cd ..