diff options
author | Anton Titov <[email protected]> | 2019-12-23 15:53:51 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-23 15:53:51 +0300 |
commit | a11a3a5511a7b986f06c5921932e3438a0a543d7 (patch) | |
tree | ce930d93d3f887da0a74c7bf0ce2b2c5173d1ca3 /.travis.yml | |
parent | 7f2909ffb746880a380dbc8b9d7f4257a5abca6c (diff) | |
parent | b0c299387222c9a32b92a11abb30c85e5c7f4741 (diff) |
Merge pull request #224 from spiral/feature/reuse-ports-and-test-improvements
Test improvements
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index e98795fb..f3955eb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,17 +29,19 @@ script: - go test ./service/health -race -v -coverprofile=health.txt -covermode=atomic after_success: - - bash <(curl -s https://codecov.io/bash) -f lib.txt - - bash <(curl -s https://codecov.io/bash) -f util.txt - - bash <(curl -s https://codecov.io/bash) -f service.txt - - bash <(curl -s https://codecov.io/bash) -f env.txt - - bash <(curl -s https://codecov.io/bash) -f rpc.txt - - bash <(curl -s https://codecov.io/bash) -f http.txt - - bash <(curl -s https://codecov.io/bash) -f static.txt - - bash <(curl -s https://codecov.io/bash) -f limit.txt - - bash <(curl -s https://codecov.io/bash) -f headers.txt - - bash <(curl -s https://codecov.io/bash) -f metrics.txt - - bash <(curl -s https://codecov.io/bash) -f health.txt + - curl https://codecov.io/bash -o codecov-bash + - chmod +x codecov-bash + - ./codecov-bash -f lib.txt + - ./codecov-bash -f util.txt + - ./codecov-bash -f service.txt + - ./codecov-bash -f env.txt + - ./codecov-bash -f rpc.txt + - ./codecov-bash -f http.txt + - ./codecov-bash -f static.txt + - ./codecov-bash -f limit.txt + - ./codecov-bash -f headers.txt + - ./codecov-bash -f metrics.txt + - ./codecov-bash -f health.txt jobs: include: |