You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Given a cron string that fires once a week, and the date given to next_run is on the last day of a month with 31 days, the returned month value it not incremented.
Expected: Returned month value is incremented. Returns datetime( 2016, 9, 7, 20, 0 )
Actual: month value is same as the one given. Returns datetime( 2016, 8, 7, 20, 0 )
Description: Given a cron string that fires once a week, and the date given to next_run is on the last day of a month with 31 days, the returned month value it not incremented.
Expected: Returned month value is incremented. Returns datetime( 2016, 9, 7, 20, 0 )
Actual: month value is same as the one given. Returns datetime( 2016, 8, 7, 20, 0 )
Reproduce:
Cron string "0 18 * * 3" (6pm every Wednesday).
next_run( datetime.datetime(2016, 8, 31, 20, 01) ).
The text was updated successfully, but these errors were encountered: