chore: update to latest pytest (#2800)

This commit is contained in:
dni ⚡
2024-12-11 11:39:28 +02:00
committed by GitHub
parent 8ff4962e86
commit 291c69e470
27 changed files with 303 additions and 310 deletions
+3 -3
View File
@@ -4,7 +4,7 @@ from lnbits.core.services.payments import check_wallet_daily_withdraw_limit
from lnbits.settings import Settings
@pytest.mark.asyncio
@pytest.mark.anyio
async def test_no_wallet_limit(settings: Settings):
settings.lnbits_wallet_limit_daily_max_withdraw = 0
result = await check_wallet_daily_withdraw_limit(
@@ -14,7 +14,7 @@ async def test_no_wallet_limit(settings: Settings):
assert result is None, "No limit set."
@pytest.mark.asyncio
@pytest.mark.anyio
async def test_wallet_limit_but_no_payments(settings: Settings):
settings.lnbits_wallet_limit_daily_max_withdraw = 5
result = await check_wallet_daily_withdraw_limit(
@@ -24,7 +24,7 @@ async def test_wallet_limit_but_no_payments(settings: Settings):
assert result is None, "Limit not reqached."
@pytest.mark.asyncio
@pytest.mark.anyio
async def test_no_wallet_spend_allowed(settings: Settings):
settings.lnbits_wallet_limit_daily_max_withdraw = -1