* Added cli integration base setup * Added cmd to simapp * Fixed ci-lint issues * Fixed ci-lint issues * Addressed changes in Makefile * Updated simd to latest * Removed testnet and replay commands * Modified tx command for simcli * Did code cleanup * Removed duplication in Makefile * Refactored cli_test * Added build-sim to Makefile * Added test-cli to circleci * Added tests for staking txns * Addressed format issues * refctored tests code * Added tests for send, staking * Removed test_hepers file * Moved test_cover to contrib * Added codec in fixtures * Migrated tests to respective modules * Exported helper methods * Moved helpers to bank * Added codec to fixtures * Migrated tests to modules * Removed auth helpers from staking * Did minor code cleanup * Added test-cli to Makefile * Updated github actions * Did code refactor * Fixed github actions for cli-test * Added tests for recover keys and fee deduction * Did minor code cleanup * Added build flag to cli_tests * Moved cli_test to tests * Modified path in Makefile * Updated codec std in fixtures * Added doc for cli tests * Remove ibc genesis validation * Fix issue number * Added missing imports * Add tests for distribution and simd * Modified naming for test functions * Added test for withdraw rewards * Modified test function names * Fixed import format * Migrated helpers to package cli * Fixed github test actions * Fixed test coverage in actions * Added build sim to actions * Apply Alessio patch for tests * Removed unused imports * Added init for go tests * try fix tests * goimports what wasn't goimports'd * try fix ci * add relevant tags to integration tests * run integration tests separately * use go build -o flag and let compiler gemerate the binary with the right extension for the HOST platform rename cli-test to test-integration * update ci * rename Co-authored-by: atheesh <atheesh1> Co-authored-by: kaustubhkapatral <54210167+kaustubhkapatral@users.noreply.github.com> Co-authored-by: Aaron Craelius <aaron@regen.network> Co-authored-by: anilCSE <anil@vitwit.com> Co-authored-by: Alessio Treglia <alessio@tendermint.com>
63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
name: Code Coverage
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
cleanup-runs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: rokroskar/workflow-run-cleanup-action@master
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"
|
|
|
|
test-coverage-upload:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v2-beta
|
|
- uses: actions/checkout@v2
|
|
- uses: technote-space/get-diff-action@v1
|
|
id: git_diff
|
|
with:
|
|
SUFFIX_FILTER: |
|
|
.go
|
|
.mod
|
|
.sum
|
|
- name: build
|
|
run: |
|
|
make build
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: test & coverage report creation
|
|
run: |
|
|
go test ./... -mod=readonly -timeout 12m -race -coverprofile=coverage.txt -covermode=atomic -tags='ledger test_ledger_mock'
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: filter out DONTCOVER
|
|
run: |
|
|
excludelist="$(find ./ -type f -name '*.go' | xargs grep -l 'DONTCOVER')"
|
|
excludelist+=" $(find ./ -type f -name '*.pb.go')"
|
|
excludelist+=" $(find ./ -type f -path './tests/mocks/*.go')"
|
|
for filename in ${excludelist}; do
|
|
filename=$(echo $filename | sed 's/^./github.com\/cosmos\/cosmos-sdk/g')
|
|
echo "Excluding ${filename} from coverage report..."
|
|
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
|
|
done
|
|
if: "env.GIT_DIFF != ''"
|
|
- uses: codecov/codecov-action@v1
|
|
with:
|
|
file: ./coverage.txt # optional
|
|
fail_ci_if_error: true
|
|
if: "env.GIT_DIFF != ''"
|
|
integration-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: build-sim
|
|
run: |
|
|
make build-sim
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: cli-test
|
|
run: |
|
|
make test-integration
|