Description
Some notebooks include async processes, which fail when run by our test suite because the next cells does not wait for the async cell to complete.
Potential solutions
- Add
time.sleep() either at the end of the cell, or in another hidden cell (include {"hide_input": true} into the cell) so it does not appear in the rendered HTML.
- Use IPython's
await, but this probably requires upstream birdy/owslib modification (ie. use asyncio)