Skip to content

Commit

Permalink
Release 3.0.0b8
Browse files Browse the repository at this point in the history
  • Loading branch information
martinseco authored and a-ibarra committed Jul 27, 2022
1 parent c03b816 commit 00cfc99
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```
# Requires Python > 3.6
pip install checkout-sdk==3.0.0b7
pip install checkout-sdk==3.0.0b8
```

> **Note**
Expand Down
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.0b7"
VERSION = "3.0.0b8"
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def payout_schedules_api():
.build()


@pytest.mark.skip(reason='not available')
def test_should_update_and_retrieve_weekly_payout_schedules(payout_schedules_api):
weekly_request = ScheduleFrequencyWeeklyRequest()
weekly_request.by_day = [DaySchedule.TUESDAY]
Expand All @@ -47,6 +48,7 @@ def test_should_update_and_retrieve_weekly_payout_schedules(payout_schedules_api
'USD.recurrence.by_day')


@pytest.mark.skip(reason='not available')
def test_should_update_and_retrieve_daily_payout_schedules(payout_schedules_api):
daily_request = ScheduleFrequencyDailyRequest()

Expand All @@ -71,6 +73,7 @@ def test_should_update_and_retrieve_daily_payout_schedules(payout_schedules_api)
'USD.recurrence.frequency')


@pytest.mark.skip(reason='not available')
def test_should_update_and_retrieve_monthly_payout_schedules(payout_schedules_api):
montly_request = ScheduleFrequencyMonthlyRequest()
montly_request.by_month_day = [5]
Expand Down

0 comments on commit 00cfc99

Please sign in to comment.