From 4dfc1f489bfdf4fe066c332b0ff08894366af643 Mon Sep 17 00:00:00 2001 From: Pino' Surace Date: Tue, 27 Jun 2023 15:52:59 +0200 Subject: [PATCH] Increase timeout --- .circleci/config.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e4061f299..92f00f76b1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -108,7 +108,7 @@ jobs: name: Benchmarks for gas calculations command: | cd ./x/wasm/keeper - go test -bench . + go test -timeout 30m -bench . - run: name: Benchmarks to compare with native modules command: | diff --git a/Makefile b/Makefile index d884193143..f9aa6b8d7f 100644 --- a/Makefile +++ b/Makefile @@ -138,7 +138,7 @@ test-cover: @go test -mod=readonly -timeout 30m -race -coverprofile=coverage.txt -covermode=atomic -tags='ledger test_ledger_mock' ./... benchmark: - @go test -mod=readonly -bench=. ./... + @go test -mod=readonly -timeout 30m -bench=. ./... test-sim-import-export: runsim @echo "Running application import/export simulation. This may take several minutes..."