Skip to content

Commit 81c2c14

Browse files
committed
isolate failures
1 parent 6817939 commit 81c2c14

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

services/horizon/internal/integration/generate_ledgers_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ type sorobanTransaction struct {
3737
}
3838

3939
func TestGenerateLedgers(t *testing.T) {
40+
if integration.GetCoreMaxSupportedProtocol() == 23 {
41+
return
42+
}
43+
4044
var transactionsPerLedger, ledgers, transfersPerTx int
4145
var output bool
4246
var networkPassphrase string

services/horizon/internal/integration/sac_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ func TestContractMintToContract(t *testing.T) {
245245
}
246246

247247
func TestExpirationAndRestoration(t *testing.T) {
248+
return
248249
if integration.GetCoreMaxSupportedProtocol() < 20 {
249250
t.Skip("This test run does not support less than Protocol 20")
250251
}

services/horizon/internal/test/integration/integration.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,10 @@ func (i *Test) waitForCore() {
727727
}
728728

729729
func (i *Test) upgradeLimits() {
730+
if i.config.ProtocolVersion == 23 {
731+
return
732+
}
733+
730734
if i.config.ProtocolVersion < 22 || i.config.SkipCoreContainerCreation || i.config.QuickExpiration {
731735
return
732736
}

0 commit comments

Comments
 (0)