take hours timedelta
This commit is contained in:
parent
367ecca2a1
commit
cef3229d61
1 changed files with 2 additions and 2 deletions
|
@ -44,12 +44,12 @@ def print_groups():
|
||||||
# TODO ok, it summarises my sleep intervals pretty well. I guess should adjust it for the fact I don't sleep during the day, and it would be ok!
|
# TODO ok, it summarises my sleep intervals pretty well. I guess should adjust it for the fact I don't sleep during the day, and it would be ok!
|
||||||
|
|
||||||
|
|
||||||
def check_backed_up():
|
def check_backed_up(hours=24):
|
||||||
model = get_model(last=1)
|
model = get_model(last=1)
|
||||||
last = list(model.iter_entries())[-1]
|
last = list(model.iter_entries())[-1]
|
||||||
latest_dt = last.dt
|
latest_dt = last.dt
|
||||||
|
|
||||||
assert (datetime.now() - latest_dt) < timedelta(days=1)
|
assert (datetime.now() - latest_dt) < timedelta(hours=hours)
|
||||||
# TODO move this to backup checker??
|
# TODO move this to backup checker??
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue