multi: disable linter paralleltest

This commit is contained in:
yyforyongyu 2023-10-13 00:00:54 +08:00
parent 839b6271e5
commit 22600b47f1
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868
6 changed files with 23 additions and 25 deletions

View File

@ -147,6 +147,7 @@ linters:
- deadcode
- nosnakecase
# Disable gofumpt as it has weird behavior regarding formatting multiple
# lines for a function which is in conflict with our contribution
# guidelines. See https://github.com/mvdan/gofumpt/issues/235.
@ -201,6 +202,10 @@ linters:
# will also catch magic numbers that make sense to extract.
- gomnd
# Some of the tests cannot be parallelized. On the other hand, we don't
# gain much performance with this check so we disable it for now until
# unit tests become our CI bottleneck.
- paralleltest
issues:
# Only show newly introduced problems.
@ -258,10 +263,6 @@ issues:
linters:
- forbidigo
- path: itest/.*
linters:
- paralleltest
- path: lnmock/*
linters:
# forcetypeassert is skipped for the mock because the test would fail

View File

@ -1579,7 +1579,6 @@ func TestFundingManagerNormalWorkflow(t *testing.T) {
},
}
//nolint:paralleltest
for _, testCase := range testCases {
t.Run(testCase.typeName, func(t *testing.T) {
testNormalWorkflow(t, testCase.chanType)
@ -4747,7 +4746,6 @@ func TestFundingManagerZeroConf(t *testing.T) {
},
}
//nolint:paralleltest
for _, testCase := range testCases {
t.Run(testCase.typeName, func(t *testing.T) {
testZeroConf(t, testCase.chanType)

View File

@ -839,7 +839,7 @@ func TestTaprootReceiverHtlcSpend(t *testing.T) {
valid: false,
},
}
for i, testCase := range testCases { //nolint:paralleltest
for i, testCase := range testCases {
i := i
testCase := testCase
spendTxCopy := spendTx.Copy()
@ -1140,7 +1140,7 @@ func TestTaprootCommitScriptToSelf(t *testing.T) {
},
}
for i, testCase := range testCases { //nolint:paralleltest
for i, testCase := range testCases {
i := i
testCase := testCase
spendTxCopy := spendTx.Copy()
@ -1317,7 +1317,7 @@ func TestTaprootCommitScriptRemote(t *testing.T) {
},
}
for i, testCase := range testCases { //nolint:paralleltest
for i, testCase := range testCases {
i := i
testCase := testCase
spendTxCopy := spendTx.Copy()
@ -1536,7 +1536,7 @@ func TestTaprootAnchorScript(t *testing.T) {
},
}
for i, testCase := range testCases { //nolint:paralleltest
for i, testCase := range testCases {
i := i
testCase := testCase
spendTxCopy := spendTx.Copy()
@ -1833,7 +1833,7 @@ func TestTaprootSecondLevelHtlcScript(t *testing.T) {
},
}
for i, testCase := range testCases { //nolint:paralleltest
for i, testCase := range testCases {
i := i
testCase := testCase
spendTxCopy := spendTx.Copy()

View File

@ -371,7 +371,7 @@ func TestSimpleAddSettleWorkflow(t *testing.T) {
})
}
t.Run("anchors", func(t *testing.T) { //nolint:paralleltest
t.Run("anchors", func(t *testing.T) {
testAddSettleWorkflow(
t, true,
channeldb.AnchorOutputsBit|channeldb.ZeroHtlcTxFeeBit,
@ -379,13 +379,12 @@ func TestSimpleAddSettleWorkflow(t *testing.T) {
)
})
t.Run("taproot", func(t *testing.T) { //nolint:paralleltest
t.Run("taproot", func(t *testing.T) {
testAddSettleWorkflow(
t, true, channeldb.SimpleTaprootFeatureBit, false,
)
})
//nolint:paralleltest
t.Run("storeFinalHtlcResolutions=true", func(t *testing.T) {
testAddSettleWorkflow(t, false, 0, true)
})
@ -819,7 +818,7 @@ func TestForceClose(t *testing.T) {
anchorAmt: anchorSize * 2,
})
})
t.Run("taproot", func(t *testing.T) { //nolint:paralleltest
t.Run("taproot", func(t *testing.T) {
testForceClose(t, &forceCloseTestCase{
chanType: channeldb.SingleFunderTweaklessBit |
channeldb.AnchorOutputsBit |
@ -3594,10 +3593,10 @@ func testChanSyncOweRevocation(t *testing.T, chanType channeldb.ChannelType) {
func TestChanSyncOweRevocation(t *testing.T) {
t.Parallel()
t.Run("tweakless", func(t *testing.T) { //nolint:paralleltest
t.Run("tweakless", func(t *testing.T) {
testChanSyncOweRevocation(t, channeldb.SingleFunderTweaklessBit)
})
t.Run("taproot", func(t *testing.T) { //nolint:paralleltest
t.Run("taproot", func(t *testing.T) {
taprootBits := channeldb.SimpleTaprootFeatureBit |
channeldb.AnchorOutputsBit |
channeldb.ZeroHtlcTxFeeBit |
@ -3777,12 +3776,12 @@ func testChanSyncOweRevocationAndCommit(t *testing.T,
func TestChanSyncOweRevocationAndCommit(t *testing.T) {
t.Parallel()
t.Run("tweakless", func(t *testing.T) { //nolint:paralleltest
t.Run("tweakless", func(t *testing.T) {
testChanSyncOweRevocationAndCommit(
t, channeldb.SingleFunderTweaklessBit,
)
})
t.Run("taproot", func(t *testing.T) { //nolint:paralleltest
t.Run("taproot", func(t *testing.T) {
taprootBits := channeldb.SimpleTaprootFeatureBit |
channeldb.AnchorOutputsBit |
channeldb.ZeroHtlcTxFeeBit |
@ -4006,12 +4005,12 @@ func testChanSyncOweRevocationAndCommitForceTransition(t *testing.T,
func TestChanSyncOweRevocationAndCommitForceTransition(t *testing.T) {
t.Parallel()
t.Run("tweakless", func(t *testing.T) { //nolint:paralleltest
t.Run("tweakless", func(t *testing.T) {
testChanSyncOweRevocationAndCommitForceTransition(
t, channeldb.SingleFunderTweaklessBit,
)
})
t.Run("taproot", func(t *testing.T) { //nolint:paralleltest
t.Run("taproot", func(t *testing.T) {
taprootBits := channeldb.SimpleTaprootFeatureBit |
channeldb.AnchorOutputsBit |
channeldb.ZeroHtlcTxFeeBit |

View File

@ -228,7 +228,7 @@ func TestMusigSesssion(t *testing.T) {
// commitment, and one for the remote commitment.
muSessions := newMuSessionHarness(t)
t.Run("session_round_trips", func(t *testing.T) { //nolint:paralleltest
t.Run("session_round_trips", func(t *testing.T) {
const numRounds = 10
for i := 0; i < numRounds; i++ {
// We'll now simulate a full commitment dance.
@ -262,7 +262,7 @@ func TestMusigSesssion(t *testing.T) {
}
})
t.Run("no_finalize_error", func(t *testing.T) { //nolint:paralleltest
t.Run("no_finalize_error", func(t *testing.T) {
// If a local party attempts to sign for their local commitment
// without finalizing first, they'll get this error.
_, err := muSessions.aliceSession.LocalSession.SignCommit(

View File

@ -131,7 +131,7 @@ func TestWalletRebroadcaster(t *testing.T) {
ChainIO: chainIO,
}
t.Run("rebroadcast bypass", func(t *testing.T) { //nolint:paralleltest
t.Run("rebroadcast bypass", func(t *testing.T) {
// We'll make a copy of the config, but without the
// broadcaster.
testCfg := *cfg
@ -166,7 +166,7 @@ func TestWalletRebroadcaster(t *testing.T) {
require.NoError(t, err)
})
t.Run("rebroadcast normal", func(t *testing.T) { //nolint:paralleltest
t.Run("rebroadcast normal", func(t *testing.T) {
wallet, err := NewLightningWallet(*cfg)
require.NoError(t, err)
require.NoError(t, wallet.Startup())