erigon3: integration tests makefile #5621

This commit is contained in:
Alex Sharov 2022-10-05 09:53:03 +07:00 committed by GitHub
parent 25a7cb38ef
commit 18f5f45d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,12 +134,15 @@ test:
$(GOTEST) --timeout 50s
test3:
$(GOTEST) --timeout 50s -tags erigon3
$(GOTEST) --timeout 50s -tags $(BUILD_TAGS),erigon3
## test-integration: run integration tests with a 30m timeout
test-integration:
$(GOTEST) --timeout 30m -tags $(BUILD_TAGS),integration
test3-integration:
$(GOTEST) --timeout 30m -tags $(BUILD_TAGS),integration,erigon3
## lint: run golangci-lint with .golangci.yml config file
lint:
@./build/bin/golangci-lint run --config ./.golangci.yml