From bb602bf71913212bcc4bdbc56c721fcf6748c2a8 Mon Sep 17 00:00:00 2001 From: Alvin Huang Date: Tue, 21 May 2019 17:19:37 -0400 Subject: [PATCH] exclude agent/proxyprocess tests since it will be removed in 1.6 (#5878) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cb4bb188c2..ddac798292 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -75,7 +75,7 @@ jobs: # This loop writes go test results to .xml per go package - run: | - for pkg in $(go list ./... | circleci tests split --split-by=timings --timings-type=classname | tr '\n' ' '); do + for pkg in $(go list ./... | grep -v github.com/hashicorp/consul/agent/proxyprocess |circleci tests split --split-by=timings --timings-type=classname | tr '\n' ' '); do reportname=$(echo $pkg | cut -d '/' -f3- | sed "s#/#_#g") gotestsum --format=short-verbose --junitfile $TEST_RESULTS_DIR/$reportname.xml -- -tags=$GOTAGS $pkg done