|
@ -46,7 +46,7 @@ jobs: |
|
|
paths: |
|
|
paths: |
|
|
- /go/src/github.com/tendermint/abci |
|
|
- /go/src/github.com/tendermint/abci |
|
|
|
|
|
|
|
|
test_integration: |
|
|
|
|
|
|
|
|
test_apps: |
|
|
<<: *defaults |
|
|
<<: *defaults |
|
|
steps: |
|
|
steps: |
|
|
- attach_workspace: |
|
|
- attach_workspace: |
|
@ -56,10 +56,10 @@ jobs: |
|
|
- restore_cache: |
|
|
- restore_cache: |
|
|
key: v1-tree-{{ .Environment.CIRCLE_SHA1 }} |
|
|
key: v1-tree-{{ .Environment.CIRCLE_SHA1 }} |
|
|
- run: |
|
|
- run: |
|
|
name: Run integration tests |
|
|
|
|
|
|
|
|
name: Run apps tests |
|
|
command: | |
|
|
command: | |
|
|
export PATH="$GOBIN:$PATH" |
|
|
export PATH="$GOBIN:$PATH" |
|
|
bash tests/test.sh |
|
|
|
|
|
|
|
|
bash tests/test_app/test.sh |
|
|
|
|
|
|
|
|
test_cover: |
|
|
test_cover: |
|
|
<<: *defaults |
|
|
<<: *defaults |
|
@ -111,9 +111,9 @@ workflows: |
|
|
- test_cover: |
|
|
- test_cover: |
|
|
requires: |
|
|
requires: |
|
|
- setup_dependencies |
|
|
- setup_dependencies |
|
|
- test_integration: |
|
|
|
|
|
|
|
|
- test_apps: |
|
|
requires: |
|
|
requires: |
|
|
- setup_dependencies |
|
|
- setup_dependencies |
|
|
- upload_coverage: |
|
|
- upload_coverage: |
|
|
requires: |
|
|
requires: |
|
|
- test_integration |
|
|
|
|
|
|
|
|
- test_cover |