Skip to content

Commit 528cf8e

Browse files
Disable token standard sanity check in preflights (#1102)
It doesn't do anything there anyway. Probably should add a baseclass for preflights as we duplicate a bunch of stuff but keeping as is for now. [static] fixes DACH-NY/cn-test-failures#4564 (comment) Signed-off-by: Moritz Kiefer <moritz.kiefer@purelyfunctional.org> Co-authored-by: Moritz Kiefer <moritz.kiefer@purelyfunctional.org>
1 parent 7fd9214 commit 528cf8e

12 files changed

+12
-0
lines changed

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/reonboard/PrepareSvReonboardPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class PrepareSvReonboardPreflightIntegrationTest
1313
with WalletFrontendTestUtil {
1414

1515
override lazy val resetRequiredTopologyState: Boolean = false
16+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1617

1718
override def environmentDefinition: SpliceEnvironmentDefinition =
1819
EnvironmentDefinition.preflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/reonboard/SvReOnboardPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class SvReOnboardPreflightIntegrationTest
2727
with WalletFrontendTestUtil {
2828

2929
override lazy val resetRequiredTopologyState: Boolean = false
30+
override protected def runTokenStandardCliSanityCheck: Boolean = false
3031

3132
override def environmentDefinition: SpliceEnvironmentDefinition =
3233
EnvironmentDefinition.preflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/CometBftPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import scala.util.Using
1010
class CometBftPreflightIntegrationTest extends IntegrationTestWithSharedEnvironment {
1111

1212
override lazy val resetRequiredTopologyState: Boolean = false
13+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1314

1415
override def environmentDefinition: SpliceEnvironmentDefinition =
1516
EnvironmentDefinition.preflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/DockerComposeValidatorPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class DockerComposeValidatorPreflightIntegrationTest
1212
with FrontendLoginUtil
1313
with WalletFrontendTestUtil {
1414
override lazy val resetRequiredTopologyState: Boolean = false
15+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1516

1617
override def environmentDefinition: SpliceEnvironmentDefinition =
1718
EnvironmentDefinition.preflightTopology(this.getClass.getSimpleName)

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/DsoPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class DsoPreflightIntegrationTest
1313
with SvUiPreflightIntegrationTestUtil {
1414

1515
override lazy val resetRequiredTopologyState: Boolean = false
16+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1617

1718
override def environmentDefinition: SpliceEnvironmentDefinition =
1819
EnvironmentDefinition.preflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/NonDsoNonDevNetPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ final class NonDsoNonDevNetPreflightIntegrationTest
1313
with DataExportTestUtil {
1414

1515
override lazy val resetRequiredTopologyState: Boolean = false
16+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1617

1718
// For now treating this as a non-SV app since it is really run directly as the DSO
1819
// rather than as SV-1. It just happens to be in SV-1's namespace.

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/RunbookSvCometBftPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import scala.util.Using
1212
class RunbookSvCometBftPreflightIntegrationTest extends IntegrationTestWithSharedEnvironment {
1313

1414
override lazy val resetRequiredTopologyState: Boolean = false
15+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1516

1617
override def environmentDefinition: SpliceEnvironmentDefinition =
1718
EnvironmentDefinition.svPreflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/RunbookSvPreflightIntegrationTestBase.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ abstract class RunbookSvPreflightIntegrationTestBase
2525
with SvTestUtil {
2626

2727
override lazy val resetRequiredTopologyState: Boolean = false
28+
override protected def runTokenStandardCliSanityCheck: Boolean = false
2829

2930
override def environmentDefinition: SpliceEnvironmentDefinition =
3031
EnvironmentDefinition.svPreflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/RunbookSvSequencerInfoPreflightIntegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import scala.jdk.OptionConverters.*
1212
class RunbookSvSequencerInfoPreflightIntegrationTest extends IntegrationTestWithSharedEnvironment {
1313

1414
override lazy val resetRequiredTopologyState: Boolean = false
15+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1516

1617
override def environmentDefinition: SpliceEnvironmentDefinition =
1718
EnvironmentDefinition.svPreflightTopology(

apps/app/src/test/scala/org/lfdecentralizedtrust/splice/integration/tests/runbook/SvNonDevNetPreflightintegrationTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ abstract class SvNonDevNetPreflightIntegrationTestBase
1515
with FrontendLoginUtil {
1616

1717
override lazy val resetRequiredTopologyState: Boolean = false
18+
override protected def runTokenStandardCliSanityCheck: Boolean = false
1819

1920
override def environmentDefinition: SpliceEnvironmentDefinition =
2021
EnvironmentDefinition.preflightTopology(

0 commit comments

Comments
 (0)