Skip to content

Commit

Permalink
chore: change makefile test name.
Browse files Browse the repository at this point in the history
  • Loading branch information
zemyblue committed Jun 12, 2023
1 parent f3f2322 commit 1dc09a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: make test-race
if: env.GIT_DIFF
- name: Test integration
run: make test-integration
run: make test-cli
if: env.GIT_DIFF

test-cover:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ distclean: clean


test: test-unit
test-all: test-race test-cover test-integration
test-all: test-race test-cover test-cli

test-unit:
@VERSION=$(VERSION) go test -mod=readonly -tags='ledger test_ledger_mock' ./...
Expand All @@ -133,7 +133,7 @@ test-race:
test-cover:
@go test -mod=readonly -timeout 30m -race -coverprofile=coverage.txt -covermode=atomic -tags='ledger test_ledger_mock' ./...

test-integration:
test-cli:
@go test -mod=readonly -tags="cli_test" ./.../testutil/...

benchmark:
Expand Down

0 comments on commit 1dc09a3

Please sign in to comment.