Ugorji Nwoke 8 роки тому
батько
коміт
b256b38273
1 змінених файлів з 5 додано та 4 видалено
  1. 5 4
      .travis.yml

+ 5 - 4
.travis.yml

@@ -4,10 +4,11 @@ go:
   - 1.8.x
   - 1.9.x
   - tip
-before_install:
-  - go get -t -v ./...
 script:
-  - cd codec && bash run.sh -t
+  - cd codec && go test -tags "alltests " -run Suite -coverprofile default.cover.txt
+  - cd codec && go test -tags "alltests safe" -run Suite -coverprofile safe.cover.txt
+  - cd codec && go test -tags "alltests notfastpath" -run Suite -coverprofile notfastpath.cover.txt
+  - cd codec && go test -tags "alltests notfastpath safe" -run Suite -coverprofile notfastpath-safe.cover.txt
 after_success:
-  - cd codec && bash <(curl -s https://codecov.io/bash) -t d363f760-34c1-4232-8c47-569fe7c02549 -f '*.cov.out'
+  - cd codec && bash <(curl -s https://codecov.io/bash) -t d363f760-34c1-4232-8c47-569fe7c02549 -f '*.cover.txt'