From 6a7424d8d9d4724987286d59a306c402ab919da9 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Fri, 14 Mar 2025 13:17:27 +0100 Subject: [PATCH] skip .meta dir --- tests/block_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/block_test.go b/tests/block_test.go index 15806b3eff..f146e4ee6a 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -63,6 +63,9 @@ func TestBlockchain(t *testing.T) { // With chain history removal, TDs become unavailable, this transition tests based on TTD are unrunnable bt.skipLoad(`.*bcArrowGlacierToParis/powToPosBlockRejection.json`) + // This directory contains no test. + bt.skipLoad(`.*\.meta/.*`) + bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) { execBlockTest(t, bt, test) })