Skip to content

Commit

Permalink
allow selecting test granularity using make (#350)
Browse files Browse the repository at this point in the history
* allow selecting test granularity using make

Adds new commands to makefile:
* make test-short (unit, e2e)
* make test-diff (difference tests only)
* make test-integration (integration tests only)
* make test-no-cache (equivalent to make test with caching disabled)

Closes: #345

* Update README.md (remove static analysis)

Co-authored-by: Daniel T <30197399+danwt@users.noreply.github.com>
  • Loading branch information
MSalopek and danwt committed Sep 8, 2022
1 parent b47ae2a commit 36dd5a9
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,26 @@ 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
test:
go test ./...

# run e2e and unit tests
test-short:
go test ./tests/e2e/... ./x/... ./app/...

# run difference tests
test-diff:
go test ./tests/difference/...

# run integration tests
test-integration:
go run ./tests/integration/...

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

BUILD_TARGETS := build

build: BUILD_ARGS=-o $(BUILDDIR)/
Expand Down
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,27 @@ Similar to e2e tests, but they compare the system state to an expected state gen
[Integration tests](./tests/integration/) run true consumer and provider chain binaries within a docker container and are relevant to the highest level of functionality. Integration tests use queries/transactions invoked from CLI to drive and validate the code.

### Running Tests
Tests can be run using `make`:

```bash
# run all static analysis, unit, e2e, and integration tests using make
TODO
# run all unit and e2e tests using make
# run unit, e2e, and integration tests
make test

# run unit and e2e tests - prefer this for local development
make test-short

# run difference tests
make test-diff

# run integration tests
make test-integration

# equivalent to make test with caching disabled
make test-no-cache
```

Alternatively you can run tests using `go test`:
```bash
# run all unit and e2e tests using go
go test ./...
# run all unit and e2e tests with verbose output
Expand Down

0 comments on commit 36dd5a9

Please sign in to comment.