diff options
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 043fdca..c4d93ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ go: os: - linux - - osx dist: xenial @@ -22,7 +21,12 @@ before_script: - ./cc-test-reporter before-build script: - - go test -v --coverprofile=c.out + - go test -v -race --coverprofile=c.out - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT - cd .. - make + +after_script: + - make clean + - cd svc/ + - go test -v -run=NONE -bench . -benchmem |