From 100baa17ee762371905ad0a2853f861bfc43c8b2 Mon Sep 17 00:00:00 2001 From: Randy Reddig Date: Sat, 10 Feb 2018 12:19:08 -0800 Subject: [PATCH] circleci: simplify; run benchmarks --- .circleci/config.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4f79bdc..6c7784a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,11 +11,9 @@ jobs: # Run tests - run: mkdir -p test-results - - run: - name: Run Tests - command: | - trap "go-junit-report < test-results/go-test.log > test-results/go-test-report.xml" EXIT - go test -v -race ./... | tee test-results/go-test.log + - run: | + trap "go-junit-report < test-results/go-test.log > test-results/go-test-report.xml" EXIT + go test -v -race -bench . ./... | tee test-results/go-test.log # Report - store_test_results: