summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-07 17:56:24 +0300
committerWolfy-J <[email protected]>2018-06-07 17:56:24 +0300
commit5a2dff38591c90cb1501dc09fea14e1a59d0cb52 (patch)
tree9a52dc0309d1f30b20560ae9f796712fb6337d73 /.travis.yml
parentef78372ec1570571a1af6b1dc9847f7cc72fdc37 (diff)
rcp tests
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