From 134949643b9282e8bb8244ab6887f0ea4871f480 Mon Sep 17 00:00:00 2001 From: Lorenzo Fontana Date: Sun, 6 Jan 2019 02:39:19 +0100 Subject: [PATCH] feat(integration): integration in travis Signed-off-by: Lorenzo Fontana --- .travis.yml | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ff04ca53..c50145a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,4 +9,5 @@ services: script: - make test - make _output/bin/kubectl-trace +- make integration - ./hack/release-image.sh diff --git a/Makefile b/Makefile index 70d82a56..446ae9ee 100644 --- a/Makefile +++ b/Makefile @@ -54,5 +54,5 @@ test: .PHONY: integration integration: - $(GO) test -v ./integration/... + TEST_KUBECTLTRACE_BINARY=$(shell pwd)/$(kubectl_trace) $(GO) test -v ./integration/...