diff options
author | Wim <wim@42.be> | 2020-06-24 23:45:45 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2020-06-24 23:45:45 +0200 |
commit | bce736993efdc2501df26a2a773b4999c5580437 (patch) | |
tree | 74c9560603be8c3c2faa4241e87bcd17f490e82e /ci/test.sh | |
parent | 56369924460e14f61c389269801247781adf8e84 (diff) | |
download | matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.gz matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.bz2 matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.zip |
Remove travis as it isn't working anymore
Diffstat (limited to 'ci/test.sh')
-rwxr-xr-x | ci/test.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ci/test.sh b/ci/test.sh deleted file mode 100755 index 5d9c258d..00000000 --- a/ci/test.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -set -u -e -x -o pipefail - -if [[ -n "${REPORT_COVERAGE+cover}" ]]; then - # Retrieve and prepare CodeClimate's test coverage reporter. - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build -fi - -# Run all the tests with the race detector and generate coverage. -go test -v -race -coverprofile c.out ./... - -if [[ -n "${REPORT_COVERAGE+cover}" && "${TRAVIS_SECURE_ENV_VARS}" == "true" ]]; then - # Upload test coverage to CodeClimate. - ./cc-test-reporter after-build -fi |