From 90d6800fbfc69df89dd34ad3f4877cfeefeb321d Mon Sep 17 00:00:00 2001 From: evan-forbes Date: Tue, 25 Jul 2023 15:11:13 +0200 Subject: [PATCH] fix: stop running the malicious integration test during short mode --- test/util/malicious/app_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/util/malicious/app_test.go b/test/util/malicious/app_test.go index f027b5f234..abd81f575a 100644 --- a/test/util/malicious/app_test.go +++ b/test/util/malicious/app_test.go @@ -68,6 +68,9 @@ func TestOutOfOrderNMT(t *testing.T) { // TestMaliciousTestNode runs a single validator network using the malicious // node. This will begin to produce out of order blocks after block height of 5. func TestMaliciousTestNode(t *testing.T) { + if testing.Short() { + t.Skip("skipping MaliciousTestNode in short mode.") + } accounts := testfactory.RandomAccountNames(5) cfg := OutOfOrderNamespaceConfig(5). WithAccounts(accounts)