From f943ca7d5127c92bd7c796d76bcfb5f1e66abfbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Thu, 23 Feb 2023 18:15:38 +0100 Subject: [PATCH] remove unused variable for test in makefile (#1540) --- Makefile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Makefile b/Makefile index a38ad8f9..67f9c250 100644 --- a/Makefile +++ b/Makefile @@ -37,10 +37,6 @@ checkisort: poetry run isort --check-only . test: - BOLTZ_NETWORK="regtest" \ - BOLTZ_URL="http://127.0.0.1:9001" \ - BOLTZ_MEMPOOL_SPACE_URL="http://127.0.0.1:8080" \ - BOLTZ_MEMPOOL_SPACE_URL_WS="ws://127.0.0.1:8080" \ LNBITS_BACKEND_WALLET_CLASS="FakeWallet" \ FAKE_WALLET_SECRET="ToTheMoon1" \ LNBITS_DATA_FOLDER="./tests/data" \ @@ -49,20 +45,12 @@ test: poetry run pytest test-real-wallet: - BOLTZ_NETWORK="regtest" \ - BOLTZ_URL="http://127.0.0.1:9001" \ - BOLTZ_MEMPOOL_SPACE_URL="http://127.0.0.1:8080" \ - BOLTZ_MEMPOOL_SPACE_URL_WS="ws://127.0.0.1:8080" \ LNBITS_DATA_FOLDER="./tests/data" \ PYTHONUNBUFFERED=1 \ DEBUG=true \ poetry run pytest test-venv: - BOLTZ_NETWORK="regtest" \ - BOLTZ_URL="http://127.0.0.1:9001" \ - BOLTZ_MEMPOOL_SPACE_URL="http://127.0.0.1:8080" \ - BOLTZ_MEMPOOL_SPACE_URL_WS="ws://127.0.0.1:8080" \ LNBITS_BACKEND_WALLET_CLASS="FakeWallet" \ FAKE_WALLET_SECRET="ToTheMoon1" \ LNBITS_DATA_FOLDER="./tests/data" \