Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
readme and makefile
  • Loading branch information
shaspitz authored Sep 8, 2022
1 parent 5dd9413 commit ea29299
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ install: go.sum
go install $(BUILD_FLAGS) ./cmd/interchain-security-pd
go install $(BUILD_FLAGS) ./cmd/interchain-security-cd

# run all tests: unit, e2e and diff
# run all tests: unit, e2e, diff, and integration
test:
go test ./...
go test ./... && go run ./tests/integration/...

# run e2e and unit tests
test-short:
Expand All @@ -25,7 +25,7 @@ test-integration:

# run all tests with caching disabled
test-no-cache:
go test ./... -count=1
go test ./... -count=1 && go run ./tests/integration/...

BUILD_TARGETS := build

Expand Down

0 comments on commit ea29299

Please sign in to comment.