From 962fb908c0cc17a01c114fccbff3ef3abd7b2c80 Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Mon, 24 Apr 2017 18:11:34 +0200 Subject: [PATCH] Pass through `TESTDIRS` env var to Docker build container. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 759ab3e1f..27939f8b5 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,8 @@ TRAEFIK_ENVS := \ -e TESTFLAGS \ -e VERBOSE \ -e VERSION \ - -e CODENAME + -e CODENAME \ + -e TESTDIRS SRCS = $(shell git ls-files '*.go' | grep -v '^vendor/' | grep -v '^integration/vendor/')