Skip to content

tests: restore caching in make test #14710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ go.work*

docker-compose.*.yml
.env
coverage-test.out
coverage-test-all.out

dist
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ test-erigon-ext:

## test: run short tests with a 10m timeout
test: test-erigon-lib
$(GOTEST) -short --timeout 10m -coverprofile=coverage-test.out
$(GOTEST) -short --timeout 10m

## test-all: run all tests with a 1h timeout
test-all: test-erigon-lib-all
Expand Down
1 change: 0 additions & 1 deletion erigon-lib/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,4 @@ tests/testdata/*

go.work*

coverage-test.out
coverage-test-all.out
2 changes: 1 addition & 1 deletion erigon-lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ lint-deps: lintci-deps
lint: lintci lint-mod-tidy

test:
$(GOTEST_NOFUZZ) -short -coverprofile=coverage-test.out ./...
$(GOTEST_NOFUZZ) -short ./...

test-all:
$(GOTEST) -coverprofile=coverage-test-all.out ./...
Loading