Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 committed Jul 31, 2024
1 parent bab64cc commit 4122549
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Test-Suite to ensure that the CgiEjvJob is working as expected.
"""
import pytest
from datetime import datetime, timedelta

from flask import current_app
Expand All @@ -30,6 +31,7 @@
factory_create_direct_pay_account, factory_distribution, factory_distribution_link, factory_invoice,
factory_invoice_reference, factory_payment, factory_payment_line_item, factory_refund_partial)


@pytest.mark.skip(reason='Will be fixed in future ticket')
def test_partial_refund_disbursement(session, monkeypatch):
"""Test partial refund disbursement."""
Expand Down
2 changes: 2 additions & 0 deletions jobs/payment-jobs/tests/jobs/test_statement_due_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def create_test_data(payment_method_code: str, payment_date: datetime,

return account, invoice, inv_ref, statement_recipient, statement_settings


@pytest.mark.skip(reason='Will be fixed 20087/PR1650')
def test_send_unpaid_statement_notification(setup, session):
"""Assert payment reminder event is being sent."""
Expand Down Expand Up @@ -147,6 +148,7 @@ def test_unpaid_statement_notification_not_sent(setup, session):
StatementDueTask.process_unpaid_statements()
mock_mailer.assert_not_called()


@pytest.mark.skip(reason='Will be fixed 20087/PR1650')
def test_overdue_invoices_updated(setup, session):
"""Assert invoices are transitioned to overdue status."""
Expand Down

0 comments on commit 4122549

Please sign in to comment.