chore: update to latest pytest (#2800)

This commit is contained in:
dni ⚡ 2024-12-11 10:39:28 +01:00 committed by GitHub
parent 8ff4962e86
commit 291c69e470
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 303 additions and 310 deletions

View file

@ -9,7 +9,7 @@ from lnbits.exceptions import PaymentError
description = "test pay invoice"
@pytest.mark.asyncio
@pytest.mark.anyio
async def test_services_pay_invoice(to_wallet, real_invoice):
payment = await pay_invoice(
wallet_id=to_wallet.id,
@ -21,7 +21,7 @@ async def test_services_pay_invoice(to_wallet, real_invoice):
assert payment.memo == description
@pytest.mark.asyncio
@pytest.mark.anyio
async def test_services_pay_invoice_0_amount_invoice(
to_wallet, real_amountless_invoice
):