pangeo-data / pangeo-binder

Pangeo + Binder (dev repo for a binder/pangeo fusion concept)
http://binder.pangeo.io
BSD 3-Clause "New" or "Revised" License
18 stars 13 forks source link

test-staging #167

Open TomAugspurger opened 4 years ago

TomAugspurger commented 4 years ago

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).

TomAugspurger commented 3 years ago

cc @scottyhq, re-running this.

scottyhq commented 3 years ago

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:

https://staging.aws-uswest2-binder.pangeo.io/v2/gh/pangeo-data/notebook-binder/2020.11.06?urlpath=lab

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()