diff --git a/.golangci.yml b/.golangci.yml index b0697e70e5..30b4d28128 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -162,9 +162,6 @@ issues: - path: rpcs.*_test\.go linters: - paralleltest - - path: shared.*_test\.go - linters: - - paralleltest - path: stateproof.*_test\.go linters: - paralleltest diff --git a/shared/pingpong/accounts_test.go b/shared/pingpong/accounts_test.go index 3e063fc9db..08def89944 100644 --- a/shared/pingpong/accounts_test.go +++ b/shared/pingpong/accounts_test.go @@ -22,6 +22,8 @@ import ( "github.com/algorand/go-algorand/crypto" "github.com/algorand/go-algorand/data/basics" + + "github.com/algorand/go-algorand/test/partitiontest" "github.com/stretchr/testify/assert" ) @@ -33,6 +35,9 @@ func makeKeyFromSeed(i uint64) *crypto.SignatureSecrets { } func TestDeterministicAccounts(t *testing.T) { + partitiontest.PartitionTest(t) + t.Parallel() + initCfg := PpConfig{ NumPartAccounts: 20, DeterministicKeys: true,