浏览代码

codec: simplify travis.yml to have only 1 output file: coverage.txt

Ugorji Nwoke 8 年之前
父节点
当前提交
872cb507ff
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      .travis.yml

+ 2 - 2
.travis.yml

@@ -5,7 +5,7 @@ go:
   - 1.9.x
   - 1.9.x
   - tip
   - tip
 script:
 script:
-  - go test -tags "alltests" -run Suite -coverprofile default.cover.txt github.com/ugorji/go/codec
+  - go test -tags "alltests" -run Suite -coverprofile coverage.txt github.com/ugorji/go/codec
 after_success:
 after_success:
-  - bash <(curl -s https://codecov.io/bash) -t d363f760-34c1-4232-8c47-569fe7c02549 -f '*.cover.txt'
+  - bash <(curl -s https://codecov.io/bash) -t d363f760-34c1-4232-8c47-569fe7c02549 -f coverage.txt