Tests: split wallet test from mint test pipeline (#748)

* split wallet test from mint test pipeline

* regtest mint and wallet

* fix

* fix

* move mint tests

* real invoice in regtest mpp
This commit is contained in:
callebtc
2025-05-11 14:14:49 +02:00
committed by GitHub
parent 619d06f0ab
commit 38bdb9ce76
35 changed files with 137 additions and 15 deletions

View File

@@ -57,8 +57,24 @@ jobs:
poetry-version: ${{ matrix.poetry-version }}
mint-database: ${{ matrix.mint-database }}
regtest:
uses: ./.github/workflows/regtest.yml
regtest-mint:
uses: ./.github/workflows/regtest-mint.yml
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
poetry-version: ["1.8.5"]
backend-wallet-class:
["LndRPCWallet", "LndRestWallet", "CLNRestWallet", "CoreLightningRestWallet", "LNbitsWallet"]
mint-database: ["./test_data/test_mint", "postgres://cashu:cashu@localhost:5432/cashu"]
# mint-database: ["./test_data/test_mint"]
with:
python-version: ${{ matrix.python-version }}
backend-wallet-class: ${{ matrix.backend-wallet-class }}
mint-database: ${{ matrix.mint-database }}
regtest-wallet:
uses: ./.github/workflows/regtest-wallet.yml
strategy:
fail-fast: false
matrix: