File tree 4 files changed +15
-12
lines changed
4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -279,11 +279,14 @@ jobs:
279
279
matrix :
280
280
include :
281
281
- name : bbolt
282
- args : dbbackend=bbolt
282
+ args : itest icase=terminal dbbackend=bbolt
283
283
- name : sqlite
284
- args : dbbackend=sqlite
284
+ args : itest icase=terminal dbbackend=sqlite
285
285
- 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
+
287
290
steps :
288
291
- name : git checkout
289
292
uses : actions/checkout@v4
@@ -305,7 +308,7 @@ jobs:
305
308
run : yarn
306
309
307
310
- name : run itest ${{ matrix.name }}
308
- run : make itest ${{ matrix.args }}
311
+ run : make ${{ matrix.args }}
309
312
310
313
- name : Zip log files on failure
311
314
if : ${{ failure() }}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ require (
29
29
github.com/lightninglabs/pool v0.6.5-beta.0.20250305125211-4e860ec4e77f
30
30
github.com/lightninglabs/pool/auctioneerrpc v1.1.3-0.20250305125211-4e860ec4e77f
31
31
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
33
33
github.com/lightninglabs/taproot-assets/taprpc v1.0.1
34
34
github.com/lightningnetwork/lnd v0.19.0-beta.rc3
35
35
github.com/lightningnetwork/lnd/cert v1.2.2
Original file line number Diff line number Diff line change @@ -506,8 +506,8 @@ github.com/lightninglabs/pool/poolrpc v1.0.1-0.20250305125211-4e860ec4e77f h1:5p
506
506
github.com/lightninglabs/pool/poolrpc v1.0.1-0.20250305125211-4e860ec4e77f /go.mod h1:lGs2hSVZ+GFpdv3btaIl9icG5/gz7BBRfvmD2iqqNl0 =
507
507
github.com/lightninglabs/protobuf-go-hex-display v1.34.2-hex-display h1:w7FM5LH9Z6CpKxl13mS48idsu6F+cEZf0lkyiV+Dq9g =
508
508
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 =
511
511
github.com/lightninglabs/taproot-assets/taprpc v1.0.1 h1:aSlCWdJkagx9xa8DqK/pzHYCtY7PokU6wASse3dWayc =
512
512
github.com/lightninglabs/taproot-assets/taprpc v1.0.1 /go.mod h1:Ccq0t2GsXzOtC8qF0U1ux/yTF5HcBbVrhCb0tb/jObM =
513
513
github.com/lightningnetwork/lightning-onion v1.2.1-0.20240712235311-98bd56499dfb h1:yfM05S8DXKhuCBp5qSMZdtSwvJ+GFzl94KbXMNB1JDY =
Original file line number Diff line number Diff line change @@ -5,23 +5,23 @@ package itest
5
5
6
6
var allTestCases = []* testCase {
7
7
{
8
- name : "integrated mode" ,
8
+ name : "terminal integrated mode" ,
9
9
test : testModeIntegrated ,
10
10
},
11
11
{
12
- name : "remote mode" ,
12
+ name : "terminal remote mode" ,
13
13
test : testModeRemote ,
14
14
},
15
15
{
16
- name : "stateless init mode" ,
16
+ name : "terminal stateless init mode" ,
17
17
test : testStatelessInitMode ,
18
18
},
19
19
{
20
- name : "firewall rules" ,
20
+ name : "terminal firewall rules" ,
21
21
test : testFirewallRules ,
22
22
},
23
23
{
24
- name : "large http header" ,
24
+ name : "terminal large http header" ,
25
25
test : testLargeHttpHeader ,
26
26
},
27
27
{
You can’t perform that action at this time.
0 commit comments