mirror of
https://github.com/MontFerret/ferret.git
synced 2025-11-06 08:39:09 +02:00
Feature/#44 e2e tests (#122)
This commit is contained in:
6
Makefile
6
Makefile
@@ -1,4 +1,4 @@
|
||||
.PHONY: build install test doc fmt lint vet
|
||||
.PHONY: build compile install test e2e doc fmt lint vet release
|
||||
|
||||
export GOPATH
|
||||
|
||||
@@ -6,6 +6,7 @@ VERSION ?= $(shell git describe --tags --always --dirty)
|
||||
DIR_BIN = ./bin
|
||||
DIR_PKG = ./pkg
|
||||
DIR_CLI = ./cli
|
||||
DIR_E2E = ./e2e
|
||||
|
||||
default: build
|
||||
|
||||
@@ -22,6 +23,9 @@ install:
|
||||
test:
|
||||
go test ${DIR_PKG}/...
|
||||
|
||||
e2e:
|
||||
go run ${DIR_E2E}/main.go --tests ${DIR_E2E}/tests --pages ${DIR_E2E}/pages
|
||||
|
||||
generate:
|
||||
go generate ${DIR_PKG}/...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user