makefile: remove test target
There's no test script. Full tests can be easily executed inside a local running agola instance using an agola "direct run". Single package tests can be executed using a manual go test invocation based on the kind of package we want to test (since some of them require a running etcd, a running docker, a running k8s cluster, a gitea binary etc...)
This commit is contained in:
parent
c6d7936cc8
commit
c775918747
6
Makefile
6
Makefile
|
@ -36,10 +36,6 @@ all: build
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build: agola agola-toolbox
|
build: agola agola-toolbox
|
||||||
|
|
||||||
.PHONY: test
|
|
||||||
test: gocovmerge
|
|
||||||
@scripts/test.sh
|
|
||||||
|
|
||||||
# don't use existing file names and track go sources, let's do this to the go tool
|
# don't use existing file names and track go sources, let's do this to the go tool
|
||||||
.PHONY: agola
|
.PHONY: agola
|
||||||
agola: $(AGOLA_DEPS)
|
agola: $(AGOLA_DEPS)
|
||||||
|
@ -68,4 +64,4 @@ docker-agola:
|
||||||
|
|
||||||
.PHONY: docker-agolademo
|
.PHONY: docker-agolademo
|
||||||
docker-agolademo:
|
docker-agolademo:
|
||||||
docker build . -t agolademo
|
docker build . -t agolademo
|
||||||
|
|
Loading…
Reference in New Issue