mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-31 23:21:19 +00:00
gather test coverage
This commit is contained in:
parent
52ec4efe27
commit
7868a3358f
10
circle.yml
10
circle.yml
@ -12,11 +12,11 @@ checkout:
|
|||||||
- rm -rf $REPO
|
- rm -rf $REPO
|
||||||
- mkdir -p $HOME/.go_workspace/src/github.com/$CIRCLE_PROJECT_USERNAME
|
- mkdir -p $HOME/.go_workspace/src/github.com/$CIRCLE_PROJECT_USERNAME
|
||||||
- mv $HOME/$CIRCLE_PROJECT_REPONAME $REPO
|
- mv $HOME/$CIRCLE_PROJECT_REPONAME $REPO
|
||||||
# - git submodule sync
|
- go version
|
||||||
# - git submodule update --init # use submodules
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
override:
|
override:
|
||||||
- "go version"
|
- cd $REPO && make get_vendor_deps && make metalinter_test && bash ./test.sh
|
||||||
- "cd $REPO && make get_vendor_deps && make metalinter_test"
|
post:
|
||||||
- "cd $REPO && make test_integrations"
|
- cd "$REPO" && bash <(curl -s https://codecov.io/bash) -f coverage.txt
|
||||||
|
- cd "$REPO" && mv coverage.txt "${CIRCLE_ARTIFACTS}"
|
||||||
|
18
test.sh
Executable file
18
test.sh
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
echo "" > coverage.txt
|
||||||
|
|
||||||
|
echo "==> Running unit tests"
|
||||||
|
for d in $(go list ./... | grep -v vendor); do
|
||||||
|
go test -race -coverprofile=profile.out -covermode=atomic "$d"
|
||||||
|
if [ -f profile.out ]; then
|
||||||
|
cat profile.out >> coverage.txt
|
||||||
|
rm profile.out
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "==> Running integration tests (./tests)"
|
||||||
|
find . -path ./vendor -prune -o -name "*.sock" -exec rm {} \;
|
||||||
|
make install
|
||||||
|
bash tests/test.sh
|
Loading…
x
Reference in New Issue
Block a user