Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com>
  • Loading branch information
hjoliver and MetRonnie authored Dec 22, 2023
1 parent 34dd485 commit 110999b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: ['3.7', '3.8', '3.10', '3.11']
include:
# mac os test
- os: 'macos-latest'
- os: 'macos-11'
python-version: '3.7' # oldest supported version
# non-utc timezone test
- os: 'ubuntu-latest'
Expand Down
7 changes: 5 additions & 2 deletions tests/integration/test_task_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1374,12 +1374,15 @@ async def test_runahead_future_trigger(
'initial cycle point': '2001',
'runahead limit': rhlimit,
'graph': {
'P1D': 'a\na[+P1D] => b',
'P1D': '''
a
a[+P1D] => b
''',
},
}
})
schd = scheduler(id_,)
async with start(schd):
async with start(schd, level=logging.DEBUG):
assert str(schd.pool.runahead_limit_point) == '20010103'
schd.pool.release_runahead_tasks()
for itask in schd.pool.get_all_tasks():
Expand Down

0 comments on commit 110999b

Please sign in to comment.