cosmwasm: Makefile: Separate unit and integration tests

We already run the unit tests as part of the rust-lint-and-tests CI job
so don't run them again before running the integration tests.
This commit is contained in:
Chirantan Ekbote 2022-12-02 14:17:23 +09:00 committed by Csongor Kiss
parent 976d8430c6
commit 83b473edba
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ unit-test:
.PHONY: test
## Run unit and integration tests
test: artifacts test/node_modules LocalTerra unit-test
test: artifacts test/node_modules LocalTerra
@if pgrep terrad; then echo "Error: terrad already running. Stop it before running tests"; exit 1; fi
cd LocalTerra && docker-compose up --detach
sleep 5