diff options
author | Wolfy-J <[email protected]> | 2018-06-13 22:45:02 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-13 22:45:02 +0300 |
commit | 06486ad04789d5b86ef1fd5e471487665c95dcbc (patch) | |
tree | 9073fbd814e0b01e62be633dd815a6b5b106c8eb | |
parent | 9942d1a8b2163fc9a6fc1377a0760512d960502a (diff) |
why php
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d8639d4e..610e7532 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,9 +27,10 @@ script: - go test ./service -race -v -coverprofile=service.txt -covermode=atomic - go test ./service/rpc -race -v -coverprofile=rpc.txt -covermode=atomic - go test ./service/http -race -v -coverprofile=http.txt -covermode=atomic + - go test ./service/static -race -v -coverprofile=static.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash) -f lib.txt - bash <(curl -s https://codecov.io/bash) -f service.txt - bash <(curl -s https://codecov.io/bash) -f rpc.txt - - bash <(curl -s https://codecov.io/bash) -f http.txt
\ No newline at end of file + - bash <(curl -s https://codecov.io/bash) -f static.txt
\ No newline at end of file @@ -2,4 +2,5 @@ test: go test -v -race -cover go test -v -race -cover ./service go test -v -race -cover ./service/rpc - go test -v -race -cover ./service/http
\ No newline at end of file + go test -v -race -cover ./service/http + go test -v -race -cover ./service/static
\ No newline at end of file |