Increase EVM timeout for eth-calls (#191)

* Increase EVM timeout for eth-calls

* Remove goose prerequisite from test targets in Makefile
This commit was merged in pull request #191.
This commit is contained in:
prathamesh0
2022-09-21 16:28:19 +05:30
committed by GitHub
parent fc0d7a6dd6
commit 4d99ecdee3
3 changed files with 18 additions and 8 deletions
+3 -3
View File
@@ -51,19 +51,19 @@ TEST_CONNECT_STRING = postgresql://$(DATABASE_USER):$(DATABASE_PASSWORD)@$(DATAB
TEST_CONNECT_STRING_LOCAL = postgresql://$(USER)@$(HOST_NAME):$(PORT)/$(TEST_DB)?sslmode=disable
.PHONY: test
test: | $(GOOSE)
test:
go vet ./...
go fmt ./...
go run github.com/onsi/ginkgo/ginkgo -r --skipPackage=test
.PHONY: integrationtest
integrationtest: | $(GOOSE)
integrationtest:
go vet ./...
go fmt ./...
go run github.com/onsi/ginkgo/ginkgo -r test/ -v
.PHONY: test_local
test_local: | $(GOOSE)
test_local:
go vet ./...
go fmt ./...
./scripts/run_unit_test.sh