Skip to content

Commit 4a37e62

Browse files
authored
Merge pull request #1066 from lightninglabs/tapd-main
mod+itest: make custom channel itest flakes less annoying
2 parents 615aeea + 9fe92d7 commit 4a37e62

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.github/workflows/main.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,14 @@ jobs:
279279
matrix:
280280
include:
281281
- name: bbolt
282-
args: dbbackend=bbolt
282+
args: itest icase=terminal dbbackend=bbolt
283283
- name: sqlite
284-
args: dbbackend=sqlite
284+
args: itest icase=terminal dbbackend=sqlite
285285
- name: postgres
286-
args: dbbackend=postgres
286+
args: itest icase=terminal dbbackend=postgres
287+
- name: custom-channels
288+
args: itest-only icase=custom_channels
289+
287290
steps:
288291
- name: git checkout
289292
uses: actions/checkout@v4
@@ -305,7 +308,7 @@ jobs:
305308
run: yarn
306309

307310
- name: run itest ${{ matrix.name }}
308-
run: make itest ${{ matrix.args }}
311+
run: make ${{ matrix.args }}
309312

310313
- name: Zip log files on failure
311314
if: ${{ failure() }}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require (
2929
github.com/lightninglabs/pool v0.6.5-beta.0.20250305125211-4e860ec4e77f
3030
github.com/lightninglabs/pool/auctioneerrpc v1.1.3-0.20250305125211-4e860ec4e77f
3131
github.com/lightninglabs/pool/poolrpc v1.0.1-0.20250305125211-4e860ec4e77f
32-
github.com/lightninglabs/taproot-assets v0.5.2-0.20250502070549-52257227c8f8
32+
github.com/lightninglabs/taproot-assets v0.5.2-0.20250506181734-e63f1a4f4597
3333
github.com/lightninglabs/taproot-assets/taprpc v1.0.1
3434
github.com/lightningnetwork/lnd v0.19.0-beta.rc3
3535
github.com/lightningnetwork/lnd/cert v1.2.2

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,8 @@ github.com/lightninglabs/pool/poolrpc v1.0.1-0.20250305125211-4e860ec4e77f h1:5p
506506
github.com/lightninglabs/pool/poolrpc v1.0.1-0.20250305125211-4e860ec4e77f/go.mod h1:lGs2hSVZ+GFpdv3btaIl9icG5/gz7BBRfvmD2iqqNl0=
507507
github.com/lightninglabs/protobuf-go-hex-display v1.34.2-hex-display h1:w7FM5LH9Z6CpKxl13mS48idsu6F+cEZf0lkyiV+Dq9g=
508508
github.com/lightninglabs/protobuf-go-hex-display v1.34.2-hex-display/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw=
509-
github.com/lightninglabs/taproot-assets v0.5.2-0.20250502070549-52257227c8f8 h1:kYAHGZTfIXgH9wQHml5B916GlS0pe6tcNsroqzabSxI=
510-
github.com/lightninglabs/taproot-assets v0.5.2-0.20250502070549-52257227c8f8/go.mod h1:OdeFcj2bnJf6aaYjBB5c8KdNI3aDaEMQpsSu2EqvMlw=
509+
github.com/lightninglabs/taproot-assets v0.5.2-0.20250506181734-e63f1a4f4597 h1:2gdwdH9HAPWnHk/1gnU7g1imofiw56KAEuLVBmMeoyQ=
510+
github.com/lightninglabs/taproot-assets v0.5.2-0.20250506181734-e63f1a4f4597/go.mod h1:OdeFcj2bnJf6aaYjBB5c8KdNI3aDaEMQpsSu2EqvMlw=
511511
github.com/lightninglabs/taproot-assets/taprpc v1.0.1 h1:aSlCWdJkagx9xa8DqK/pzHYCtY7PokU6wASse3dWayc=
512512
github.com/lightninglabs/taproot-assets/taprpc v1.0.1/go.mod h1:Ccq0t2GsXzOtC8qF0U1ux/yTF5HcBbVrhCb0tb/jObM=
513513
github.com/lightningnetwork/lightning-onion v1.2.1-0.20240712235311-98bd56499dfb h1:yfM05S8DXKhuCBp5qSMZdtSwvJ+GFzl94KbXMNB1JDY=

itest/litd_test_list_on_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ package itest
55

66
var allTestCases = []*testCase{
77
{
8-
name: "integrated mode",
8+
name: "terminal integrated mode",
99
test: testModeIntegrated,
1010
},
1111
{
12-
name: "remote mode",
12+
name: "terminal remote mode",
1313
test: testModeRemote,
1414
},
1515
{
16-
name: "stateless init mode",
16+
name: "terminal stateless init mode",
1717
test: testStatelessInitMode,
1818
},
1919
{
20-
name: "firewall rules",
20+
name: "terminal firewall rules",
2121
test: testFirewallRules,
2222
},
2323
{
24-
name: "large http header",
24+
name: "terminal large http header",
2525
test: testLargeHttpHeader,
2626
},
2727
{

0 commit comments

Comments
 (0)