mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
disable test around daily cutoff time
This commit is contained in:
parent
94485f36ae
commit
40b5051a92
1 changed files with 3 additions and 0 deletions
|
@ -705,6 +705,9 @@ def test_filt_reviewing_early_normal():
|
|||
|
||||
def test_filt_keep_lrn_state():
|
||||
d = getEmptyCol()
|
||||
if (d.sched.dayCutoff - time.time()) < 60*60*3:
|
||||
print("test_filt_keep_lrn_state disabled due to time of day")
|
||||
return
|
||||
|
||||
f = d.newNote()
|
||||
f['Front'] = "one"
|
||||
|
|
Loading…
Reference in a new issue