summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 5ea8b20d..e84964f8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,9 @@ install:
- go get -u "github.com/stretchr/testify/assert"
script:
- - go test -race -v -coverprofile=coverage.txt -covermode=atomic
+ - go test -race -v -coverprofile=lib.txt -covermode=atomic
+ - go test ./rpc -race -v -coverprofile=rpc.txt -covermode=atomic
after_success:
- - bash <(curl -s https://codecov.io/bash)
+ - bash <(curl -s https://codecov.io/bash) -f lib.txt
+ - bash <(curl -s https://codecov.io/bash) -f rpc.txt \ No newline at end of file