From 31a51f3cbcefd2848c908ef1ecf265e2171e9f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Wed, 17 Aug 2022 15:57:56 +0200 Subject: [PATCH] add debug logging into tests (#895) Co-authored-by: dni --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 20fe65ce8..80ae00c20 100644 --- a/Makefile +++ b/Makefile @@ -32,11 +32,13 @@ test: FAKE_WALLET_SECRET="ToTheMoon1" \ LNBITS_DATA_FOLDER="./tests/data" \ PYTHONUNBUFFERED=1 \ + DEBUG=true \ poetry run pytest test-real-wallet: LNBITS_DATA_FOLDER="./tests/data" \ PYTHONUNBUFFERED=1 \ + DEBUG=true \ poetry run pytest test-venv: @@ -44,6 +46,7 @@ test-venv: FAKE_WALLET_SECRET="ToTheMoon1" \ LNBITS_DATA_FOLDER="./tests/data" \ PYTHONUNBUFFERED=1 \ + DEBUG=true \ ./venv/bin/pytest --durations=1 -s --cov=lnbits --cov-report=xml tests test-migration: