-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (31 loc) · 1.13 KB
/
Makefile
File metadata and controls
34 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
test:
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestSmoke
test-smoke:
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -short -v -run TestSmoke
test-full:
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestGlobal
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestApps
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestAuth
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestBuilds
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestClusters
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestConfig
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestKeys
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestPerms
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestPs
GOPATH=$(CURDIR)/_vendor:$(GOPATH) \
go test -tags integration -v -run TestReleases
nuke_from_orbit:
-docker kill `docker ps -q`
-docker rm `docker ps -a -q`
-docker rmi -f `docker images -q`