File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 27
27
runs-on : ubuntu-latest
28
28
steps :
29
29
- uses : actions/checkout@v3
30
+ with :
31
+ submodules : true
30
32
31
33
- name : Set up Go
32
34
uses : actions/setup-go@v3
58
60
runs-on : ubuntu-latest
59
61
steps :
60
62
- uses : actions/checkout@v3
63
+ with :
64
+ submodules : true
61
65
62
66
- name : Set up Go
63
67
uses : actions/setup-go@v3
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const (
23
23
MemStoreFlagName = "memstore.enabled"
24
24
ExpirationFlagName = "memstore.expiration"
25
25
26
- DefaultPruneInterval = 1 * time .Minute
26
+ DefaultPruneInterval = 500 * time .Millisecond
27
27
)
28
28
29
29
type MemStoreConfig struct {
Original file line number Diff line number Diff line change @@ -139,6 +139,10 @@ func TestE2EPutGetLogicForEigenDAStore(t *testing.T) {
139
139
}
140
140
141
141
func TestE2EPutGetLogicForMemoryStore (t * testing.T ) {
142
+ if runTestnetIntegrationTests {
143
+ t .Skip ("Skipping non-testnet integration test" )
144
+ }
145
+
142
146
ts , kill := createTestSuite (t , true )
143
147
defer kill ()
144
148
You can’t perform that action at this time.
0 commit comments