fix: regtests

This commit is contained in:
Vlad Stan
2026-03-26 11:57:25 +02:00
parent 632cd257d7
commit cac4e309f4
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -66,7 +66,6 @@ test-regtest:
LNBITS_DATA_FOLDER="./tests/data" \ LNBITS_DATA_FOLDER="./tests/data" \
PYTHONUNBUFFERED=1 \ PYTHONUNBUFFERED=1 \
DEBUG=true \ DEBUG=true \
rm -rf ./tests/data
uv run pytest tests/regtest uv run pytest tests/regtest
test-migration: test-migration:
+2 -2
View File
@@ -14,9 +14,9 @@ funding_source = get_funding_source()
def is_boltz_wallet(): def is_boltz_wallet():
print( print(
"### funding_source.__class__.__name__ 2", "### funding_source.__class__.__name__ 2",
funding_source.__class__.__name__, get_funding_source().__class__.__name__,
) )
return funding_source.__class__.__name__ == "BoltzWallet" return get_funding_source().__class__.__name__ == "BoltzWallet"
docker_lightning_cli = [ docker_lightning_cli = [