Open TomAugspurger opened 4 years ago
cc @scottyhq, re-running this.
not sure about the failure. I made this repository a while back to facilitate specific images https://github.com/pangeo-data/notebook-binder. It is not at all automated, but allows for manual testing of specific images with a link like:
Then I run some basic code or a notebook i've been working on w/ dask gateway. N
from dask_gateway import Gateway
gateway = Gateway()
cluster = gateway.new_cluster()
cluster
And watch a simple test calculation on the dashboard
import dask.array as da
cluster.scale(4)
arr = da.random.random((10000, 10000), chunks=100)
arr.compute()
FYI, the run failed https://github.com/pangeo-data/pangeo-binder/pull/167/checks?check_run_id=1259964516, but that isn't reflected in the GitHub UI.
To fix the failing examples I think we just need a step to update the submodules (we pull pangeo-gallery/pangeo-gallery, which may be behind).