Allow more time for test network to produce blocks
This commit is contained in:
parent
639b4e6333
commit
91677966f7
@ -4,6 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"cosmossdk.io/math"
|
"cosmossdk.io/math"
|
||||||
"github.com/stretchr/testify/suite"
|
"github.com/stretchr/testify/suite"
|
||||||
@ -47,7 +48,9 @@ func (ets *E2ETestSuite) SetupSuite() { //nolint: all
|
|||||||
var err error
|
var err error
|
||||||
|
|
||||||
ets.network, err = network.New(ets.T(), ets.T().TempDir(), ets.cfg)
|
ets.network, err = network.New(ets.T(), ets.T().TempDir(), ets.cfg)
|
||||||
|
if err != nil && !strings.Contains(err.Error(), "timeout exceeded waiting for block") {
|
||||||
sr.NoError(err)
|
sr.NoError(err)
|
||||||
|
}
|
||||||
|
|
||||||
_, err = ets.network.WaitForHeight(1)
|
_, err = ets.network.WaitForHeight(1)
|
||||||
sr.NoError(err)
|
sr.NoError(err)
|
||||||
|
@ -2,6 +2,7 @@ package bond
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"cosmossdk.io/math"
|
"cosmossdk.io/math"
|
||||||
"github.com/stretchr/testify/suite"
|
"github.com/stretchr/testify/suite"
|
||||||
@ -39,7 +40,9 @@ func (ets *E2ETestSuite) SetupSuite() { //nolint: all
|
|||||||
var err error
|
var err error
|
||||||
|
|
||||||
ets.network, err = network.New(ets.T(), ets.T().TempDir(), ets.cfg)
|
ets.network, err = network.New(ets.T(), ets.T().TempDir(), ets.cfg)
|
||||||
|
if err != nil && !strings.Contains(err.Error(), "timeout exceeded waiting for block") {
|
||||||
sr.NoError(err)
|
sr.NoError(err)
|
||||||
|
}
|
||||||
|
|
||||||
_, err = ets.network.WaitForHeight(1)
|
_, err = ets.network.WaitForHeight(1)
|
||||||
sr.NoError(err)
|
sr.NoError(err)
|
||||||
|
@ -3,6 +3,7 @@ package registry
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"cosmossdk.io/math"
|
"cosmossdk.io/math"
|
||||||
@ -56,7 +57,9 @@ func (ets *E2ETestSuite) SetupSuite() {
|
|||||||
ets.cfg.GenesisState = genesisState
|
ets.cfg.GenesisState = genesisState
|
||||||
|
|
||||||
ets.network, err = network.New(ets.T(), ets.T().TempDir(), ets.cfg)
|
ets.network, err = network.New(ets.T(), ets.T().TempDir(), ets.cfg)
|
||||||
|
if err != nil && !strings.Contains(err.Error(), "timeout exceeded waiting for block") {
|
||||||
sr.NoError(err)
|
sr.NoError(err)
|
||||||
|
}
|
||||||
|
|
||||||
_, err = ets.network.WaitForHeight(2)
|
_, err = ets.network.WaitForHeight(2)
|
||||||
sr.NoError(err)
|
sr.NoError(err)
|
||||||
|
Loading…
Reference in New Issue
Block a user