From b3072308dc5d726639b33a65ce7463b6f375f7e9 Mon Sep 17 00:00:00 2001 From: xsami Date: Tue, 15 Oct 2019 16:31:40 -0400 Subject: [PATCH] CI/CD enhacements --- .circleci/config.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b54af11..cf05cb6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,7 @@ jobs: # basic units of work in a run name: Validate service is working command: | go test ./... - go test bechmark=. ./... + go test -bench=. - store_artifacts: # Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ path: /tmp/test-results diff --git a/.travis.yml b/.travis.yml index 2d2db26..63631bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,6 +32,6 @@ before_script: # failing test, we want to see both. Configure golangci-lint with a # .golangci.yml file at the top level of your repo. script: - - golangci-lint run # run a bunch of code checkers/linters in parallel + - golangci-lint run --tests=false # run a bunch of code checkers/linters in parallel - go test ./... # Run all the tests cases - go test -bench=. ./... # Run all the benchmark test \ No newline at end of file