Skip to content

Commit

Permalink
Release 3.0.19 (#151)
Browse files Browse the repository at this point in the history
- Adds `payment sessions` support
- Update `payment request` for `payment contexts`
- Update `giropay` source
- Update properties and tests
  • Loading branch information
armando-rodriguez-cko authored Feb 16, 2024
1 parent e236a52 commit 22714fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion checkout_sdk/properties.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "3.0.18"
VERSION = "3.0.19"
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ def test_should_make_knet_payment(previous_api):
'_links')


@pytest.mark.skip(reason='not available')
def test_should_make_przelewy24_payment(previous_api):
request_source = RequestP24Source()
request_source.payment_country = Country.PL
Expand Down Expand Up @@ -402,6 +403,7 @@ def test_should_make_poli_payment(previous_api):
'_links')


@pytest.mark.skip(reason='not available')
def test_should_make_bancontact_payment(previous_api):
request_source = RequestBancontactSource()
request_source.payment_country = Country.BE
Expand Down
2 changes: 1 addition & 1 deletion tests/payments/request_apm_payments_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def test_should_make_bancontact_payment(default_api):
payment_request.failure_url = FAILURE_URL

check_error_item(callback=default_api.payments.request_payment,
error_item=PAYEE_NOT_ONBOARDED,
error_item=APM_SERVICE_UNAVAILABLE,
payment_request=payment_request)


Expand Down

0 comments on commit 22714fc

Please sign in to comment.