Browse Source

Fixed Makefile to cleanup after run

pull/1780/head
Ethan Frey 7 years ago
parent
commit
98c4679f39
2 changed files with 3 additions and 1 deletions
  1. +1
    -0
      .gitignore
  2. +2
    -1
      Makefile

+ 1
- 0
.gitignore View File

@ -1,3 +1,4 @@
*.swp
*.swo
*.pyc
vendor

+ 2
- 1
Makefile View File

@ -11,7 +11,8 @@ install:
go install github.com/tendermint/abci/cmd/...
test:
go test `${NOVENDOR}`
find . -name test.sock -exec rm {} \;
go test -p 1 `${NOVENDOR}`
bash tests/test.sh
test_integrations: get_vendor_deps install test


Loading…
Cancel
Save