1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00

Run functional tests on TravisCI

This commit is contained in:
Adrian Utrilla
2016-11-13 22:20:13 +01:00
parent 16f48eb2d2
commit 822d974ebd
3 changed files with 9 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ PROJECT := go.mozilla.org/sops
GO := GO15VENDOREXPERIMENT=1 go
GOLINT := golint
all: test vet generate install
all: test vet generate install functional-tests
install:
$(GO) install go.mozilla.org/sops/cmd/sops
@@ -40,4 +40,8 @@ showcoverage: test
generate:
$(GO) generate
.PHONY: all test generate clean vendor
functional-tests:
$(GO) build -o functional-tests/sops go.mozilla.org/sops/cmd/sops
cd functional-tests && cargo test
.PHONY: all test generate clean vendor functional-tests