diff --git a/Jenkinsfile b/Jenkinsfile index 32f5802..6d87f8a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py39-230601-1-update240116" + image "pavics/workflow-tests:py311-240506-update240508" label 'linux && docker' } } @@ -82,7 +82,7 @@ Requires 'weaver' component to be active on the target 'PAVICS_HOST' server string(name: 'RAVENPY_REPO', defaultValue: 'CSHS-CWRA/RavenPy', description: 'https://github.com/CSHS-CWRA/RavenPy repo or fork to test against.', trim: true) booleanParam(name: 'TEST_ESGF_COMPUTE_API_REPO', defaultValue: false, - description: 'Check the box to test esgf-compute-api repo.') + description: 'Check the box to test esgf-compute-api repo. Kept here for historical reasons only, not working anymore.') string(name: 'ESGF_COMPUTE_API_BRANCH', defaultValue: 'devel', description: 'ESGF_COMPUTE_API_REPO branch to test against.', trim: true) string(name: 'ESGF_COMPUTE_API_REPO', defaultValue: 'ESGF/esgf-compute-api', @@ -100,6 +100,8 @@ Requires 'weaver' component to be active on the target 'PAVICS_HOST' server booleanParam(name: 'SAVE_RESULTING_NOTEBOOK', defaultValue: true, description: '''Check the box to save the resulting notebooks of the run. Note this is another run, will double the time and no guaranty to have same error as the run from py.test.''') + string(name: 'SAVE_RESULTING_NOTEBOOK_TIMEOUT', defaultValue: '240', + description: 'Timeout in sec for nbconvert. For slow notebooks or slow machine', trim: true) } triggers { diff --git a/binder/Dockerfile b/binder/Dockerfile index 670e829..a1bb326 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py39-230601-1-update240116 +FROM pavics/workflow-tests:py311-240506-update240508 USER root diff --git a/docker/Dockerfile b/docker/Dockerfile index b7da9aa..25e9642 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM continuumio/miniconda3 # Use mamba for much improved performance over conda. # The 'channel_priority strict' did help conda but it was not enough. RUN conda update conda -n base && \ - conda install mamba -n base -c conda-forge -c defaults && \ + conda install mamba conda-pack -n base -c conda-forge -c defaults && \ conda clean --all --yes && \ conda config --set channel_priority strict && \ wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba @@ -21,7 +21,7 @@ RUN apt-get update && \ # Create user jenkins for our Jenkins e2e notebooks test suite. # Change /opt/conda folder permissions for jupyter-conda extension. RUN groupadd --gid 1000 jenkins \ - && useradd --uid 1000 --gid jenkins --create-home jenkins && \ + && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && \ chmod -R a+rwX /opt/conda COPY environment.yml /environment.yml @@ -43,10 +43,8 @@ COPY environment.yml /environment.yml # Conda was stuck at this step: # DEBUG conda.common._logic:_run_sat(607): Invoking SAT with clause count: 2500273 # -# Python 3.10 cause this "ValueError: `popmean.shape[axis]` must equal 1." in -# homepage nb 4, see https://github.com/Ouranosinc/PAVICS-landing/issues/65 RUN umask 0000 && \ - mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.9 --yes && \ + mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.11 --yes && \ mamba env update --name birdy --file /environment.yml && \ mamba clean --all --yes @@ -97,7 +95,9 @@ RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/$DOCKER_STACKS_ wget https://raw.githubusercontent.com/jupyter/docker-stacks/$DOCKER_STACKS_COMMIT/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && \ chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && \ chmod a+r /etc/jupyter/jupyter_notebook_config.py && \ - mkdir /notebook_dir && chown jenkins /notebook_dir && \ + mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && \ + mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && \ + chown root:root /notebook_dir && chmod a-w /notebook_dir && \ chmod a+rwX -R /opt/conda/envs/birdy/fonts && \ mkdir /opt/conda/pkgs/cache && \ chown jenkins:jenkins -R /opt/conda/pkgs/cache && \ diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 94d6d61..94fe5de 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:py39-230601-1-update231122 +FROM pavics/workflow-tests:py311-240506 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,9 +11,11 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && pip install --no-cache-dir https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip -# && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy salib \ -# && mamba clean --all --yes + && pip uninstall -y ravenpy birdhouse-birdy \ + && pip install --no-cache-dir --no-deps ravenpy==0.13.1 birdhouse-birdy==0.8.7 \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 \ + && mamba clean --all --yes +# && pip install --no-cache-dir --upgrade figanos # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp diff --git a/docker/environment.yml b/docker/environment.yml index b79727b..eaaa5e5 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -4,7 +4,7 @@ channels: - conda-forge - cdat - bokeh - - plotly # for jupyter-dash + # - plotly # for jupyter-dash # - pyston - pyviz/label/dev # for jupyter-panel-proxy, panel - defaults @@ -19,8 +19,13 @@ dependencies: # Pin latest xclim and ravenpy to avoid downgrading during the second installation phase. # Mamba is quicker to solve dependencies than conda, but it is less precise so accidental downgrades can happen. - - xclim >= 0.43.0 - - ravenpy >= 0.12.1 + - xclim >= 0.47.0 + - ravenpy >= 0.13.0 + + # https://anaconda.org/conda-forge/xscen + # A climate change scenario-building analysis framework, built with xclim/xarray. + # PIN to 0.8.2 for xclim 0.47.0 compat + - xscen == 0.8.2 #- dask # from xclim and ravenpy #- distributed @@ -32,13 +37,10 @@ dependencies: - matplotlib # - xarray # from xclim and ravenpy # - numpy # from xclim and ravenpy - # TODO: unpin numpy, pinned for hvplot.quadmesh(rasterize=True) - # datashade=True is an alias - # See https://github.com/holoviz/hvplot/issues/1073 - - numpy <= 1.23.5 + - numpy # TODO: unpin cf_xarray due to https://github.com/xarray-contrib/cf-xarray/issues/442 - cf_xarray != 0.8.1 - - birdy + - birdy >= 0.8.7 # - owslib>=0.23.0 # from ravenpy # - netcdf4 # from ravenpy # TODO: remove libnetcdf PIN because https://github.com/Ouranosinc/PAVICS-landing/issues/66 @@ -49,6 +51,10 @@ dependencies: - cfgrib - pydap - cartopy >= 0.21.0 + # Fixes cartopy bug arising with scipy 1.11. + # https://github.com/Ouranosinc/pavics-sdi/pull/298 + # https://github.com/Ouranosinc/pavics-sdi/issues/294 + - pykdtree - descartes # Is this really needed??? # - rasterio # from ravenpy # - gdal # for osgeo, from ravenpy @@ -60,15 +66,14 @@ dependencies: - pyogrio - scikit-image - ipyleaflet - - threddsclient + - threddsclient >= 0.4.5 - bokeh - regionmask - siphon - jupyter_bokeh - pscript - h5netcdf - # TODO: remove panel pin when Analogues dashboard works - - panel <= 0.14.4 + - panel >= 1.2.2 # https://github.com/holoviz/panel - pyviz_comms # (was labextension pyviz/jupyterlab_pyviz in jupyterlab v2) - holoviews @@ -79,6 +84,8 @@ dependencies: # https://github.com/bird-house/birdhouse-deploy/pull/63#issuecomment-668270608 # pinning hvplot did not solve the problem with violin plot. - hvplot + # https://anaconda.org/conda-forge/dash + - dash >= 2.16.1 # https://streamlit.io/ # https://anaconda.org/conda-forge/streamlit - streamlit @@ -89,6 +96,9 @@ dependencies: # https://python-pptx.readthedocs.io/en/latest/ # https://anaconda.org/conda-forge/python-pptx - python-pptx + # openpyxl: library to read/write Excel 2010 xlsx/xlsm files + # https://anaconda.org/conda-forge/openpyxl + - openpyxl - nc-time-axis # - cftime # from xclim and ravenpy # - statsmodels # for ravenpy @@ -102,11 +112,7 @@ dependencies: # Plugin for building and loading intake catalogs for earth system data sets # holdings, such as CMIP (Coupled Model Intercomparison Project) and CESM # Large Ensemble datasets. - # Pin intake-esm since newer version activated validation of optional fields and broke our notebooks - # ValidationError: 1 validation error for ESMCatalogModel - # aggregation_control - # field required (type=value_error.missing) - - intake-esm <= 2021.8.17 + - intake-esm >= 2023.6.14 # load netCDF, Zarr and other multi-dimensional data (xarray_image, netcdf, # grib, opendap, rasterio, remote-xarray, zarr) - intake-xarray @@ -140,7 +146,8 @@ dependencies: - esgf-compute-api # https://anaconda.org/conda-forge/esgf-pyclient (for pavics-sdi esgf-dap.ipynb) - esgf-pyclient - - cdms2 + # Disable cdms2 because it was forcing python downgrade to 3.10 and below. + #- cdms2 # Disable vcs because it was forcing python downgrade to below 3.9. # See https://github.com/CDAT/vcs/issues/457 # package vcs-8.1-py_0 requires vtk-cdat >8.1, but none of the providers can be installed @@ -168,10 +175,12 @@ dependencies: # extension to produce .py files from notebook .ipynb files - jupytext # jupyterlab extension for git - - jupyterlab-git + - jupyterlab-git >= 0.44.0 # Voilà turns Jupyter notebooks into standalone web applications - voila - - jupyter-archive + # PIN jupyter-archive due to + # https://github.com/jupyterlab-contrib/jupyter-archive/issues/132 + - jupyter-archive <= 3.3.4 # https://github.com/jtpio/jupyterlab-topbar - jupyterlab-topbar # https://github.com/jtpio/jupyterlab-system-monitor (was from jupyterlab-topbar) @@ -180,7 +189,6 @@ dependencies: - nbresuse # needed by jupyterlab-system-monitor # xeus-python: back-end kernel implementing the Jupyter Debug Protocol - xeus-python - - jupyter-dash # https:://github.com/jupyterhub/jupyter-server-proxy - jupyter-server-proxy # https://github.com/dask/dask-labextension @@ -225,6 +233,10 @@ dependencies: # https://pypi.org/project/fstd2nc/ # Converts RPN standard files (from Environment Canada) to netCDF files. - fstd2nc + # https://pypi.org/project/figanos/ + # Outils pour produire des graphiques informatifs sur les impacts des + # changements climatiques. + - figanos # visual debugger for Jupyter Notebook, not working with JupyterLab at this moment - pixiedust # block execution of 'run_all_cells' until user input finished diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml new file mode 100644 index 0000000..1ddf2b8 --- /dev/null +++ b/docker/saved_buildout/conda-env-export.yml @@ -0,0 +1,721 @@ +name: birdy +channels: + - cdat + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _openmp_mutex=4.5=2_gnu + - affine=2.4.0=pyhd8ed1ab_0 + - aiobotocore=2.12.2=pyhd8ed1ab_0 + - aiofiles=22.1.0=pyhd8ed1ab_0 + - aiohttp=3.9.5=py311h459d7ec_0 + - aioitertools=0.11.0=pyhd8ed1ab_0 + - aiosignal=1.3.1=pyhd8ed1ab_0 + - aiosqlite=0.19.0=pyhd8ed1ab_0 + - alembic=1.13.1=pyhd8ed1ab_1 + - alsa-lib=1.2.8=h166bdaf_0 + - altair=5.3.0=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 + - anyio=4.3.0=pyhd8ed1ab_0 + - aom=3.5.0=h27087fc_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 + - arrow=1.3.0=pyhd8ed1ab_0 + - arrow-cpp=11.0.0=ha770c72_14_cpu + - asciitree=0.3.3=py_2 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async_generator=1.10=py_0 + - attr=2.5.1=h166bdaf_1 + - attrs=23.2.0=pyh71513ae_0 + - aws-c-auth=0.6.26=h987a71b_2 + - aws-c-cal=0.5.21=h48707d8_2 + - aws-c-common=0.8.14=h0b41bf4_0 + - aws-c-compression=0.2.16=h03acc5a_5 + - aws-c-event-stream=0.2.20=h00877a2_4 + - aws-c-http=0.7.6=hf342b9f_0 + - aws-c-io=0.13.19=h5b20300_3 + - aws-c-mqtt=0.8.6=hc4349f7_12 + - aws-c-s3=0.2.7=h909e904_1 + - aws-c-sdkutils=0.1.9=h03acc5a_0 + - aws-checksums=0.1.14=h03acc5a_5 + - aws-crt-cpp=0.19.8=hf7fbfca_12 + - aws-sdk-cpp=1.10.57=h17c43bd_8 + - azure-core-cpp=1.10.3=h22d5011_0 + - azure-identity-cpp=1.6.0=hf1915f5_0 + - babel=2.14.0=pyhd8ed1ab_0 + - bcrypt=4.1.2=py311h46250e7_0 + - beautifulsoup4=4.12.3=pyha770c72_0 + - bias_correction=0.4=pyhd8ed1ab_0 + - bleach=6.1.0=pyhd8ed1ab_0 + - blinker=1.8.1=pyhd8ed1ab_0 + - blosc=1.21.5=h0f2a231_0 + - bokeh=3.4.1=pyhd8ed1ab_0 + - boltons=24.0.0=pyhd8ed1ab_0 + - boost-cpp=1.78.0=h5adbc97_2 + - botocore=1.34.51=pyge310_1234567_0 + - bottleneck=1.3.8=py311h1f0f07a_0 + - branca=0.7.2=pyhd8ed1ab_0 + - brotli=1.0.9=h166bdaf_9 + - brotli-bin=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py311ha362b79_9 + - brunsli=0.1=h9c3ff4c_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.28.1=hd590300_0 + - c-blosc2=2.12.0=hb4ffafa_0 + - ca-certificates=2024.2.2=hbcca054_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.3=pyhd8ed1ab_0 + - cairo=1.16.0=ha61ee94_1014 + - cartopy=0.23.0=py311h320fe9a_0 + - cattrs=23.2.3=pyhd8ed1ab_0 + - certifi=2024.2.2=pyhd8ed1ab_0 + - certipy=0.1.3=py_0 + - cf_xarray=0.9.0=pyhd8ed1ab_0 + - cffi=1.16.0=py311hb3a22ac_0 + - cfgrib=0.9.11.0=pyhd8ed1ab_0 + - cfgv=3.3.1=pyhd8ed1ab_0 + - cfitsio=4.2.0=hd9d235c_0 + - cftime=1.6.3=py311h1f0f07a_0 + - charls=2.4.2=h59595ed_0 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 + - click-plugins=1.1.1=py_0 + - cligj=0.7.2=pyhd8ed1ab_1 + - climpred=2.4.0=pyhd8ed1ab_0 + - clisops=0.13.0=pyhca7485f_0 + - cloudpickle=3.0.0=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - colorcet=3.1.0=pyhd8ed1ab_0 + - comm=0.2.2=pyhd8ed1ab_0 + - configurable-http-proxy=4.5.4=he2f69ee_2 + - contourpy=1.2.1=py311h9547e67_0 + - coverage=7.5.1=py311h331c9d8_0 + - cryptography=42.0.2=py311hcb13ee4_0 + - curl=7.88.1=hdc1c0ab_1 + - cycler=0.12.1=pyhd8ed1ab_0 + - cytoolz=0.12.3=py311h459d7ec_0 + - dash=2.17.0=pyhd8ed1ab_0 + - dask=2024.5.0=pyhd8ed1ab_0 + - dask-core=2024.5.0=pyhd8ed1ab_0 + - dask-expr=1.1.0=pyhd8ed1ab_0 + - dask-labextension=6.2.0=pyhd8ed1ab_0 + - dataclasses=0.8=pyhc8e2a94_3 + - datashader=0.16.1=pyhd8ed1ab_0 + - dav1d=1.2.1=hd590300_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.8.1=py311hb755f60_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - descartes=1.1.0=py_4 + - dill=0.3.8=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - distributed=2024.5.0=pyhd8ed1ab_0 + - docopt=0.6.2=py_1 + - docrep=0.3.2=pyh44b312d_0 + - eccodes=2.28.0=h7513371_1 + - elfutils=0.189=hde5d1a3_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - eofs=1.4.1=pyhd8ed1ab_1 + - esgf-compute-api=2.3.9=0_h1234567_ + - esgf-pyclient=0.3.1=pyhca7485f_3 + - esmf=8.4.0=nompi_hdb2cfa9_4 + - esmpy=8.4.0=nompi_py311h8e2db7d_2 + - et_xmlfile=1.1.0=pyhd8ed1ab_0 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 + - execnet=2.1.1=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 + - expat=2.6.2=h59595ed_0 + - fasteners=0.17.3=pyhd8ed1ab_0 + - fastprogress=1.0.3=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_hc118613_108 + - filelock=3.14.0=pyhd8ed1ab_0 + - findlibs=0.0.5=pyhd8ed1ab_0 + - fiona=1.9.1=py311h3f14cef_0 + - flask=3.0.3=pyhd8ed1ab_0 + - flox=0.9.6=pyhd8ed1ab_0 + - fmt=10.2.1=h00ab1b0_0 + - folium=0.16.0=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=h77eed37_2 + - fontconfig=2.14.2=h14ed4e7_0 + - fonts-conda-ecosystem=1=0 + - fonts-conda-forge=1=0 + - fonttools=4.51.0=py311h459d7ec_0 + - fqdn=1.5.1=pyhd8ed1ab_0 + - freeglut=3.2.2=h9c3ff4c_1 + - freetype=2.12.1=h267a509_2 + - freexl=1.0.6=h166bdaf_1 + - frozenlist=1.4.1=py311h459d7ec_0 + - fsspec=2024.3.1=pyhca7485f_0 + - funcsigs=1.0.2=py_3 + - future=1.0.0=pyhd8ed1ab_0 + - gcsfs=2024.3.1=pyhd8ed1ab_0 + - gdal=3.6.2=py311hadb6153_6 + - geckodriver=0.34.0=h2b8f863_0 + - geographiclib=2.0=pyhd8ed1ab_0 + - geopandas=0.14.4=pyhd8ed1ab_0 + - geopandas-base=0.14.4=pyha770c72_0 + - geopy=2.4.1=pyhd8ed1ab_1 + - geos=3.11.1=h27087fc_0 + - geotiff=1.7.1=h7a142b4_6 + - geoviews=1.12.0=pyhd8ed1ab_0 + - geoviews-core=1.12.0=pyha770c72_0 + - gettext=0.22.5=h59595ed_2 + - gettext-tools=0.22.5=h59595ed_2 + - gflags=2.2.2=he1b5a44_1004 + - giflib=5.2.2=hd590300_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - gitpython=3.1.43=pyhd8ed1ab_0 + - glib=2.78.1=hfc55251_0 + - glib-tools=2.78.1=hfc55251_0 + - glog=0.6.0=h6f12383_0 + - gnutls=3.7.9=hb077bed_0 + - google-api-core=2.19.0=pyhd8ed1ab_0 + - google-auth=2.29.0=pyhca7485f_0 + - google-auth-oauthlib=1.2.0=pyhd8ed1ab_0 + - google-cloud-core=2.4.1=pyhd8ed1ab_0 + - google-cloud-storage=2.16.0=pyhca7485f_0 + - google-crc32c=1.1.2=py311h9b08b9c_5 + - google-resumable-media=2.7.0=pyhd8ed1ab_0 + - googleapis-common-protos=1.63.0=pyhd8ed1ab_0 + - graphite2=1.3.13=h59595ed_1003 + - greenlet=3.0.3=py311hb755f60_0 + - grpcio=1.52.1=py311hcafe171_1 + - gst-plugins-base=1.22.0=h4243ec0_2 + - gstreamer=1.22.0=h25f0c4b_2 + - gstreamer-orc=0.4.38=hd590300_0 + - h11=0.14.0=pyhd8ed1ab_0 + - h5netcdf=1.3.0=pyhd8ed1ab_0 + - h5py=3.8.0=nompi_py311h1db17ec_100 + - harfbuzz=6.0.0=h8e241bc_0 + - haversine=2.8.1=pyhd8ed1ab_0 + - hdf4=4.2.15=h9772cbc_5 + - hdf5=1.12.2=nompi_h4df4325_101 + - holoviews=1.18.3=pyhd8ed1ab_0 + - hvplot=0.9.2=pyhd8ed1ab_0 + - icu=70.1=h27087fc_0 + - identify=2.5.36=pyhd8ed1ab_0 + - idna=3.7=pyhd8ed1ab_0 + - imagecodecs=2023.1.23=py311ha5a3c35_0 + - imageio=2.34.1=pyh4b66e23_0 + - impi_rt=2021.12.0=ha770c72_535 + - importlib-metadata=7.1.0=pyha770c72_0 + - importlib_metadata=7.1.0=hd8ed1ab_0 + - importlib_resources=6.4.0=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - intake=0.7.0=pyhd8ed1ab_0 + - intake-esm=2024.2.6=pyhd8ed1ab_1 + - intake-geopandas=0.4.0=pyhd8ed1ab_0 + - intake-thredds=2024.3.1=pyhd8ed1ab_0 + - intake-xarray=0.7.0=pyhd8ed1ab_0 + - ipykernel=6.29.3=pyhd33586a_0 + - ipyleaflet=0.19.0=pyhd8ed1ab_1 + - ipython=8.22.2=pyh707e725_0 + - ipython_genutils=0.2.0=py_1 + - ipywidgets=8.1.2=pyhd8ed1ab_0 + - isoduration=20.11.0=pyhd8ed1ab_0 + - itsdangerous=2.2.0=pyhd8ed1ab_0 + - jack=1.9.22=h11f4161_0 + - jasper=2.0.33=h0ff4b12_1 + - jedi=0.19.1=pyhd8ed1ab_0 + - jinja2=3.1.3=pyhd8ed1ab_0 + - jmespath=1.0.1=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_0 + - jpeg=9e=h166bdaf_2 + - json-c=0.16=hc379101_0 + - json5=0.9.25=pyhd8ed1ab_0 + - jsonpickle=3.0.4=pyhd8ed1ab_0 + - jsonpointer=2.4=py311h38be061_3 + - jsonschema=4.22.0=pyhd8ed1ab_0 + - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.22.0=pyhd8ed1ab_0 + - jupyter=1.0.0=pyhd8ed1ab_10 + - jupyter-archive=3.3.4=pyhd8ed1ab_1 + - jupyter-resource-usage=0.7.1=pyhd8ed1ab_0 + - jupyter-server-mathjax=0.2.6=pyh5bfe37b_1 + - jupyter-server-proxy=4.1.2=pyhd8ed1ab_0 + - jupyter_bokeh=3.0.7=pyhd8ed1ab_0 + - jupyter_client=7.4.9=pyhd8ed1ab_0 + - jupyter_console=6.6.3=pyhd8ed1ab_0 + - jupyter_core=5.7.2=py311h38be061_0 + - jupyter_events=0.10.0=pyhd8ed1ab_0 + - jupyter_leaflet=0.19.0=pyhd8ed1ab_1 + - jupyter_server=2.14.0=pyhd8ed1ab_0 + - jupyter_server_fileid=0.9.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.3=pyhd8ed1ab_0 + - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 + - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 + - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 + - jupyterhub=4.1.5=pyh31011fe_0 + - jupyterhub-base=4.1.5=pyh31011fe_0 + - jupyterlab=3.6.7=pyhd8ed1ab_0 + - jupyterlab-git=0.44.0=pyhd8ed1ab_0 + - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 + - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jupyterlab_server=2.27.1=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 + - jupytext=1.16.2=pyhd8ed1ab_0 + - jxrlib=1.1=hd590300_3 + - kealib=1.5.0=ha7026e8_0 + - keyutils=1.6.1=h166bdaf_0 + - kiwisolver=1.4.5=py311h9547e67_1 + - krb5=1.20.1=h81ceb04_0 + - lame=3.100=h166bdaf_1003 + - lazy_loader=0.4=pyhd8ed1ab_0 + - lcms2=2.15=hfd0df8a_0 + - ld_impl_linux-64=2.40=h55db66e_0 + - lerc=4.0.0=h27087fc_0 + - libabseil=20230125.0=cxx17_hcb278e6_1 + - libaec=1.1.3=h59595ed_0 + - libarchive=3.6.2=h3d51595_0 + - libarrow=11.0.0=h93537a5_14_cpu + - libasprintf=0.22.5=h661eb56_2 + - libasprintf-devel=0.22.5=h661eb56_2 + - libavif=0.11.1=h8182462_2 + - libblas=3.9.0=22_linux64_openblas + - libbrotlicommon=1.0.9=h166bdaf_9 + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 + - libcap=2.67=he9d0100_0 + - libcblas=3.9.0=22_linux64_openblas + - libclang=15.0.7=default_h127d8a8_5 + - libclang13=15.0.7=default_h5d6823c_5 + - libcrc32c=1.1.2=h9c3ff4c_0 + - libcups=2.3.3=h36d4200_3 + - libcurl=7.88.1=hdc1c0ab_1 + - libdb=6.2.32=h9c3ff4c_0 + - libdeflate=1.17=h0b41bf4_0 + - libdrm=2.4.120=hd590300_0 + - libedit=3.1.20191231=he28a2e2_2 + - libev=4.33=hd590300_2 + - libevent=2.1.10=h28343ad_4 + - libexpat=2.6.2=h59595ed_0 + - libffi=3.4.2=h7f98852_5 + - libflac=1.4.3=h59595ed_0 + - libgcc-ng=13.2.0=h77fa898_6 + - libgcrypt=1.10.3=hd590300_0 + - libgdal=3.6.2=h8c90c07_6 + - libgettextpo=0.22.5=h59595ed_2 + - libgettextpo-devel=0.22.5=h59595ed_2 + - libgfortran-ng=13.2.0=h69a702a_6 + - libgfortran5=13.2.0=h43f5ff8_6 + - libglib=2.78.1=hebfc3b9_0 + - libglu=9.0.0=he1b5a44_1001 + - libgomp=13.2.0=h77fa898_6 + - libgoogle-cloud=2.8.0=h0bc5f78_1 + - libgpg-error=1.49=h4f305b6_0 + - libgrpc=1.52.1=hcf146ea_1 + - libiconv=1.17=hd590300_2 + - libidn2=2.3.7=hd590300_0 + - libjpeg-turbo=2.1.4=h166bdaf_0 + - libkml=1.3.0=h01aab08_1016 + - liblapack=3.9.0=22_linux64_openblas + - libllvm14=14.0.6=hcd5def8_4 + - libllvm15=15.0.7=hadd5161_1 + - libllvm16=16.0.1=hadd5161_0 + - libmicrohttpd=0.9.77=h97afed2_0 + - libnetcdf=4.8.1=nompi_h261ec11_106 + - libnghttp2=1.58.0=h47da74e_0 + - libnl=3.9.0=hd590300_0 + - libnsl=2.0.1=hd590300_0 + - libnuma=2.0.18=h4ab18f5_2 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.27=pthreads_h413a1c8_0 + - libopus=1.3.1=h7f98852_1 + - libpciaccess=0.18=hd590300_0 + - libpng=1.6.43=h2797004_0 + - libpq=15.2=hb675445_0 + - libprotobuf=3.21.12=hfc55251_2 + - librttopo=1.1.0=ha49c73b_12 + - libsndfile=1.2.2=hc60ed4a_1 + - libsodium=1.0.18=h36c2ea0_1 + - libspatialindex=1.9.3=h9c3ff4c_4 + - libspatialite=5.0.1=h221c8f1_23 + - libsqlite=3.45.3=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libstdcxx-ng=13.2.0=hc0a3c3a_6 + - libsystemd0=253=h8c4010b_1 + - libtasn1=4.19.0=h166bdaf_0 + - libthrift=0.18.1=h5e4af38_0 + - libtiff=4.5.0=h6adf6a1_2 + - libtool=2.4.7=h27087fc_0 + - libudev1=253=h0b41bf4_1 + - libunistring=0.9.10=h7f98852_0 + - libutf8proc=2.8.0=h166bdaf_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=hd590300_1 + - libvorbis=1.3.7=h9c3ff4c_0 + - libwebp-base=1.4.0=hd590300_0 + - libxcb=1.13=h7f98852_1004 + - libxcrypt=4.4.36=hd590300_1 + - libxkbcommon=1.5.0=h79f4944_1 + - libxml2=2.10.3=hca2bb57_4 + - libxslt=1.1.37=h873f0b0_0 + - libzip=1.10.1=h2629f0a_3 + - libzlib=1.2.13=hd590300_5 + - libzopfli=1.0.3=h9c3ff4c_0 + - linkify-it-py=2.0.3=pyhd8ed1ab_0 + - llvmlite=0.42.0=py311ha6695c7_1 + - lmoments3=1.0.6=pyhd8ed1ab_0 + - locket=1.0.0=pyhd8ed1ab_0 + - loguru=0.7.2=py311h38be061_1 + - lxml=4.9.2=py311h14a6109_0 + - lz4=4.3.3=py311h38e4bf4_0 + - lz4-c=1.9.4=hcb278e6_0 + - lzo=2.10=hd590300_1001 + - mako=1.3.3=pyhd8ed1ab_0 + - mamba_gator=5.2.1=pyhd8ed1ab_0 + - mapclassify=2.6.1=pyhd8ed1ab_0 + - markdown=3.6=pyhd8ed1ab_0 + - markdown-it-py=3.0.0=pyhd8ed1ab_0 + - markupsafe=2.1.5=py311h459d7ec_0 + - matplotlib=3.8.4=py311h38be061_0 + - matplotlib-base=3.8.4=py311h54ef318_0 + - matplotlib-inline=0.1.7=pyhd8ed1ab_0 + - mdit-py-plugins=0.4.0=pyhd8ed1ab_0 + - mdurl=0.1.2=pyhd8ed1ab_0 + - memory_profiler=0.61.0=pyhd8ed1ab_0 + - mesalib=23.0.2=h3855f93_0 + - minizip=4.0.3=h0ab5242_0 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpg123=1.32.6=h59595ed_0 + - mpi=1.0=impi + - mpi4py=3.1.6=py311he9ffdee_0 + - msgpack-python=1.0.7=py311h9547e67_0 + - multidict=6.0.5=py311h459d7ec_0 + - multipledispatch=0.6.0=py_0 + - multiprocess=0.70.16=py311h459d7ec_0 + - munch=4.0.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - myproxyclient=2.1.1=pyhd8ed1ab_0 + - mypy_extensions=1.0.0=pyha770c72_0 + - mysql-common=8.0.33=hf1915f5_6 + - mysql-libs=8.0.33=hca2cd23_6 + - nbclassic=1.0.0=pyhb4ecaf3_1 + - nbclient=0.7.4=pyhd8ed1ab_0 + - nbconvert=7.16.4=hd8ed1ab_0 + - nbconvert-core=7.16.4=pyhd8ed1ab_0 + - nbconvert-pandoc=7.16.4=hd8ed1ab_0 + - nbdime=3.2.1=pyhd8ed1ab_0 + - nbformat=5.10.4=pyhd8ed1ab_0 + - nbresuse=0.4.0=pyhd8ed1ab_0 + - nbval=0.11.0=pyhd8ed1ab_0 + - nc-time-axis=1.4.1=pyhd8ed1ab_0 + - ncurses=6.4.20240210=h59595ed_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 + - nested_dict=1.61=pyhd3deb0d_0 + - netcdf-fortran=4.6.0=nompi_he1eeb6f_102 + - netcdf4=1.6.2=nompi_py311hc6fcf29_100 + - nettle=3.9.1=h7ab15ed_0 + - networkx=3.3=pyhd8ed1ab_1 + - nodeenv=1.8.0=pyhd8ed1ab_0 + - nodejs=18.15.0=h8d033a5_0 + - notebook=6.5.6=pyha770c72_0 + - notebook-shim=0.2.4=pyhd8ed1ab_0 + - nspr=4.35=h27087fc_0 + - nss=3.98=h1d7d5a4_0 + - numba=0.59.1=py311h96b013e_0 + - numcodecs=0.12.1=py311hb755f60_0 + - numpy=1.24.4=py311h64a7726_0 + - numpy_groupies=0.11.1=pyhd8ed1ab_0 + - oauthlib=3.2.2=pyhd8ed1ab_0 + - openjpeg=2.5.0=hfec8fc6_2 + - openpyxl=3.1.2=py311h459d7ec_1 + - openssl=3.1.5=hd590300_0 + - orc=1.8.3=h2f23424_1 + - outcome=1.3.0.post0=pyhd8ed1ab_0 + - overrides=7.7.0=pyhd8ed1ab_0 + - owslib=0.28.1=pyhd8ed1ab_0 + - p11-kit=0.24.1=hc5aa10d_0 + - packaging=24.0=pyhd8ed1ab_0 + - pamela=1.1.0=pyh1a96a4e_0 + - pandas=2.1.4=py311h320fe9a_0 + - pandoc=3.1.13=ha770c72_0 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - panel=1.4.2=pyhd8ed1ab_0 + - param=2.1.0=pyhca7485f_0 + - paramiko=3.4.0=pyhd8ed1ab_0 + - parquet-cpp=1.5.1=2 + - parse=1.20.1=pyhd8ed1ab_0 + - parso=0.8.4=pyhd8ed1ab_0 + - partd=1.4.1=pyhd8ed1ab_0 + - pathos=0.3.2=pyhd8ed1ab_1 + - patsy=0.5.6=pyhd8ed1ab_0 + - pcre2=10.40=hc3806b6_0 + - pexpect=4.9.0=pyhd8ed1ab_0 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py311h50def17_1 + - pint=0.23=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 + - pixman=0.43.2=h59595ed_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=4.2.1=pyhd8ed1ab_0 + - plotly=5.22.0=pyhd8ed1ab_0 + - pluggy=1.5.0=pyhd8ed1ab_0 + - ply=3.11=pyhd8ed1ab_2 + - pooch=1.8.1=pyhd8ed1ab_0 + - poppler=23.01.0=h091648b_0 + - poppler-data=0.4.12=hd8ed1ab_0 + - postgresql=15.2=h3248436_0 + - pox=0.3.4=pyhd8ed1ab_0 + - ppft=1.7.6.8=pyhd8ed1ab_0 + - pre-commit=3.7.0=pyha770c72_0 + - proj=9.1.1=h8ffa02c_2 + - prometheus_client=0.20.0=pyhd8ed1ab_0 + - prompt-toolkit=3.0.42=pyha770c72_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 + - properscoring=0.1=py_0 + - proto-plus=1.23.0=pyhd8ed1ab_0 + - protobuf=4.21.12=py311hcafe171_0 + - pscript=0.7.7=pyhd8ed1ab_0 + - psutil=5.9.8=py311h459d7ec_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pulseaudio=16.1=hcb278e6_3 + - pulseaudio-client=16.1=h5195f5e_3 + - pulseaudio-daemon=16.1=ha8d29e2_3 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - pyarrow=11.0.0=py311hbdf6286_14_cpu + - pyarrow-hotfix=0.6=pyhd8ed1ab_0 + - pyasn1=0.6.0=pyhd8ed1ab_0 + - pyasn1-modules=0.4.0=pyhd8ed1ab_0 + - pycparser=2.22=pyhd8ed1ab_0 + - pyct=0.5.0=pyhd8ed1ab_0 + - pycurl=7.45.1=py311hae980a4_3 + - pydantic=2.7.1=pyhd8ed1ab_0 + - pydantic-core=2.18.2=py311h5ecf98a_0 + - pydap=3.4.0=pyhd8ed1ab_0 + - pydeck=0.8.0=pyhd8ed1ab_0 + - pygments=2.18.0=pyhd8ed1ab_0 + - pyjwt=2.8.0=pyhd8ed1ab_1 + - pykdtree=1.3.12=py311h7c22f60_0 + - pymbolic=2022.2=pyhd8ed1ab_0 + - pymetalink=6.4=pyhd8ed1ab_0 + - pynacl=1.5.0=py311h459d7ec_3 + - pyogrio=0.5.1=py311h3f14cef_0 + - pyopenssl=24.0.0=pyhd8ed1ab_0 + - pyparsing=3.1.2=pyhd8ed1ab_0 + - pyproj=3.5.0=py311h945b3ca_0 + - pyqt=5.15.9=py311hf0fb5b6_5 + - pyqt5-sip=12.12.2=py311hb755f60_5 + - pyshp=2.3.1=pyhd8ed1ab_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pytest=8.2.0=pyhd8ed1ab_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 + - python=3.11.6=hab00c5b_0_cpython + - python-dateutil=2.9.0=pyhd8ed1ab_0 + - python-eccodes=1.5.1=py311hcb2cf0a_0 + - python-fastjsonschema=2.19.1=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-pptx=0.6.23=pyhd8ed1ab_0 + - python-tzdata=2024.1=pyhd8ed1ab_0 + - python_abi=3.11=4_cp311 + - pytools=2024.1.2=pyhd8ed1ab_0 + - pytz=2024.1=pyhd8ed1ab_0 + - pyu2f=0.1.5=pyhd8ed1ab_0 + - pyviz_comms=2.3.2=pyhd8ed1ab_0 + - pywavelets=1.4.1=py311h1f0f07a_1 + - pyyaml=6.0.1=py311h459d7ec_1 + - pyzmq=24.0.1=py311ha4b6469_1 + - qt-main=5.15.8=h5d23da1_6 + - qtconsole-base=5.5.2=pyha770c72_0 + - qtpy=2.4.1=pyhd8ed1ab_0 + - rasterio=1.3.6=py311h567e639_0 + - raven-hydro=0.2.4=py311h64a4d7b_0 + - rdma-core=51.0=hd3aeb46_0 + - re2=2023.02.02=hcb278e6_0 + - readline=8.2=h8228510_1 + - rechunker=0.5.2=pyhd8ed1ab_1 + - referencing=0.35.1=pyhd8ed1ab_0 + - regionmask=0.12.1=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - requests-cache=1.2.0=pyhd8ed1ab_1 + - requests-magpie=0.2.0=pyhd8ed1ab_0 + - requests-oauthlib=2.0.0=pyhd8ed1ab_0 + - retrying=1.3.3=py_2 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rich=13.7.1=pyhd8ed1ab_0 + - rioxarray=0.15.5=pyhd8ed1ab_0 + - roocs-grids=0.1.2=pyhd8ed1ab_0 + - roocs-utils=0.6.8=pyhd8ed1ab_0 + - rpds-py=0.18.0=py311h46250e7_0 + - rsa=4.9=pyhd8ed1ab_0 + - rtree=1.2.0=py311h3bb2b0f_0 + - ruamel.yaml=0.18.6=py311h459d7ec_0 + - ruamel.yaml.clib=0.2.8=py311h459d7ec_0 + - s2n=1.3.41=h3358134_0 + - s3fs=2024.3.1=pyhd8ed1ab_0 + - salib=1.5.0=pyhd8ed1ab_0 + - scikit-image=0.22.0=py311h320fe9a_2 + - scikit-learn=1.4.2=py311hc009520_0 + - scipy=1.13.0=py311h517d4fd_1 + - scp=0.14.5=pyhd8ed1ab_0 + - seaborn=0.13.2=hd8ed1ab_2 + - seaborn-base=0.13.2=pyhd8ed1ab_2 + - selenium=4.20.0=pyhd8ed1ab_0 + - selenium-manager=4.20.0=he8a937b_0 + - send2trash=1.8.3=pyh0d859eb_0 + - setuptools=69.5.1=pyhd8ed1ab_0 + - shapely=2.0.1=py311h0f577a2_0 + - simpervisor=1.0.0=pyhd8ed1ab_0 + - sip=6.7.12=py311hb755f60_0 + - siphon=0.9=pyhd8ed1ab_2 + - six=1.16.0=pyh6c4a22f_0 + - smmap=5.0.0=pyhd8ed1ab_0 + - snappy=1.1.10=hdb0a2a9_1 + - sniffio=1.3.1=pyhd8ed1ab_0 + - snuggs=1.4.7=py_0 + - sortedcontainers=2.4.0=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 + - sparse=0.15.1=pyhd8ed1ab_1 + - spdlog=1.13.0=hd2e6256_0 + - spotpy=1.6.2=pyhd8ed1ab_0 + - sqlalchemy=2.0.30=py311h331c9d8_0 + - sqlite=3.45.3=h2c6b66d_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - statsmodels=0.14.1=py311h1f0f07a_0 + - streamlit=1.34.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_0 + - tenacity=8.2.3=pyhd8ed1ab_0 + - terminado=0.18.1=pyh0d859eb_0 + - threadpoolctl=3.5.0=pyhc1e730c_0 + - threddsclient=0.4.5=pyhca7485f_0 + - tifffile=2023.8.12=pyhd8ed1ab_0 + - tiledb=2.13.2=hd532e3d_0 + - tinycss2=1.3.0=pyhd8ed1ab_0 + - tk=8.6.13=noxft_h4845f30_101 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - toolz=0.12.1=pyhd8ed1ab_0 + - tornado=6.4=py311h459d7ec_0 + - tqdm=4.66.4=pyhd8ed1ab_0 + - traitlets=5.14.3=pyhd8ed1ab_0 + - traittypes=0.2.1=pyh9f0ad1d_2 + - trio=0.25.0=py311h38be061_0 + - trio-websocket=0.11.1=pyhd8ed1ab_0 + - types-python-dateutil=2.9.0.20240316=pyhd8ed1ab_0 + - typing-extensions=4.11.0=hd8ed1ab_0 + - typing_extensions=4.11.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 + - tzcode=2024a=h3f72095_0 + - tzdata=2024a=h0c530f3_0 + - tzlocal=5.2=py311h38be061_0 + - uc-micro-py=1.0.3=pyhd8ed1ab_0 + - ucx=1.14.1=h0aa22dc_2 + - ujson=5.9.0=py311hb755f60_0 + - ukkonen=1.0.1=py311h9547e67_4 + - uri-template=1.3.0=pyhd8ed1ab_0 + - uriparser=0.9.7=h59595ed_1 + - url-normalize=1.4.3=pyhd8ed1ab_0 + - urllib3=2.0.7=pyhd8ed1ab_0 + - urlpath=1.2.0=pyhd8ed1ab_0 + - validators=0.28.1=pyhd8ed1ab_0 + - virtualenv=20.26.1=pyhd8ed1ab_0 + - voila=0.5.6=pyhd8ed1ab_0 + - watchdog=4.0.0=py311h38be061_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 + - webob=1.8.7=pyhd8ed1ab_0 + - websocket-client=1.8.0=pyhd8ed1ab_0 + - websockets=12.0=py311h459d7ec_0 + - werkzeug=3.0.3=pyhd8ed1ab_0 + - wget=1.20.3=ha35d2d1_1 + - wheel=0.43.0=pyhd8ed1ab_1 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 + - wrapt=1.16.0=py311h459d7ec_0 + - wsproto=1.2.0=pyhd8ed1ab_0 + - xarray=2023.8.0=pyhd8ed1ab_0 + - xcb-util=0.4.0=h516909a_0 + - xcb-util-image=0.4.0=h166bdaf_0 + - xcb-util-keysyms=0.4.0=h516909a_0 + - xcb-util-renderutil=0.3.9=h166bdaf_0 + - xcb-util-wm=0.4.1=h516909a_0 + - xclim=0.47.0=py311h38be061_0 + - xerces-c=3.2.4=h55805fa_1 + - xesmf=0.8.5=pyhd8ed1ab_0 + - xeus=3.1.5=h06414e2_0 + - xeus-python=0.15.12=py311h9547e67_0 + - xeus-python-shell=0.5.0=pyhd8ed1ab_0 + - xeus-python-shell-raw=0.5.0=pyhd8ed1ab_0 + - xeus-zmq=1.1.1=h6b5a882_1 + - xhistogram=0.3.2=pyhd8ed1ab_0 + - xkeyboard-config=2.38=h0b41bf4_0 + - xlrd=2.0.1=pyhd8ed1ab_3 + - xlsxwriter=3.1.9=pyhd8ed1ab_0 + - xorg-damageproto=1.2.1=h7f98852_1002 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-glproto=1.4.17=h7f98852_1002 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libsm=1.2.4=h7391055_0 + - xorg-libx11=1.8.4=h0b41bf4_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdamage=1.1.5=h7f98852_1 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxi=1.7.10=h7f98852_0 + - xorg-libxrandr=1.5.2=h7f98852_1 + - xorg-libxrender=0.9.10=h7f98852_1003 + - xorg-randrproto=1.5.0=h7f98852_1001 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-util-macros=1.19.3=h7f98852_0 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xrft=1.0.1=pyhd8ed1ab_0 + - xscen=0.8.2=pyhd8ed1ab_0 + - xskillscore=0.0.26=pyhd8ed1ab_0 + - xyzservices=2024.4.0=pyhd8ed1ab_0 + - xz=5.2.6=h166bdaf_0 + - y-py=0.5.9=py311hfe55011_0 + - yamale=5.0.0=pyhca7485f_0 + - yaml=0.2.5=h7f98852_2 + - yarl=1.9.4=py311h459d7ec_0 + - ypy-websocket=0.8.2=pyhd8ed1ab_0 + - zarr=2.17.2=pyhd8ed1ab_0 + - zeromq=4.3.5=h59595ed_1 + - zfp=1.0.1=h59595ed_0 + - zict=3.0.0=pyhd8ed1ab_0 + - zipp=3.17.0=pyhd8ed1ab_0 + - zlib=1.2.13=hd590300_5 + - zlib-ng=2.0.7=h0b41bf4_0 + - zstandard=0.19.0=py311hd4cff14_0 + - zstd=1.5.6=ha6fb4c9_0 + - pip: + - astunparse==1.6.3 + - birdhouse-birdy==0.8.7 + - cairocffi==1.7.0 + - cairosvg==2.7.1 + - colour==0.1.5 + - cssselect2==0.7.0 + - dnspython==2.6.1 + - email-validator==2.1.1 + - figanos==0.3.0 + - fstd2nc==0.20240401.1 + - fstd2nc-deps==0.20200304.6 + - geojson==3.1.0 + - hsclient==1.0.0 + - hsmodels==1.0.3 + - ipython-blocking==0.3.1 + - isodate==0.6.1 + - jupyterlab-logout==0.5.0 + - jupyterlab-tabular-data-editor==1.0.0 + - jupyternotify==0.1.15 + - pixiedust==1.1.19 + - pytest-tornasync==0.6.0.post2 + - ravenpy==0.13.1 + - rdflib==5.0.0 + - xmltodict==0.13.0 + - xncml==0.4.0 + - xsdata==24.4 +prefix: /opt/conda/envs/birdy diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt new file mode 100644 index 0000000..f347c78 --- /dev/null +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -0,0 +1,374 @@ +2024-05-08T22:10:08Z Building in Docker Cloud's infrastructure... +2024-05-08T22:10:08Z Cloning into '.'... +2024-05-08T22:10:09Z Warning: Permanently added the RSA host key for IP address '140.82.112.4' to the list of known hosts. +2024-05-08T22:10:11Z Switched to a new branch 'dockerupdate-py311-240506-update240508' +2024-05-08T22:10:11Z KernelVersion: 5.4.0-1068-aws +2024-05-08T22:10:11Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-05-08T22:10:11Z Arch: amd64 +2024-05-08T22:10:11Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-05-08T22:10:11Z ApiVersion: 1.41 +2024-05-08T22:10:11Z Platform: {u'Name': u'Docker Engine - Community'} +2024-05-08T22:10:11Z Version: 20.10.15 +2024-05-08T22:10:11Z MinAPIVersion: 1.12 +2024-05-08T22:10:11Z GitCommit: 4433bf6 +2024-05-08T22:10:11Z Os: linux +2024-05-08T22:10:11Z GoVersion: go1.17.9 +2024-05-08T22:10:11Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py311-240506-update240508... +2024-05-08T22:10:17Z #1 [internal] load build definition from Dockerfile.testing +2024-05-08T22:10:17Z #1 transferring dockerfile: 1.31kB done +2024-05-08T22:10:17Z #1 DONE 0.1s +2024-05-08T22:10:17Z +2024-05-08T22:10:17Z #2 [internal] load .dockerignore +2024-05-08T22:10:17Z #2 transferring context: 2B done +2024-05-08T22:10:17Z #2 DONE 0.1s +2024-05-08T22:10:17Z +2024-05-08T22:10:17Z #3 [auth] pavics/workflow-tests:pull token for registry-1.docker.io +2024-05-08T22:10:17Z #3 DONE 0.0s +2024-05-08T22:10:17Z +2024-05-08T22:10:17Z #4 [internal] load metadata for docker.io/pavics/workflow-tests:py311-240506 +2024-05-08T22:10:18Z #4 DONE 0.7s +2024-05-08T22:10:18Z +2024-05-08T22:10:18Z #5 [1/2] FROM docker.io/pavics/workflow-tests:py311-240506@sha256:a9484357f753689b6bccb8c3d59bea9fae6a30407520048c87475ef553d00bbe +2024-05-08T22:10:18Z #5 resolve docker.io/pavics/workflow-tests:py311-240506@sha256:a9484357f753689b6bccb8c3d59bea9fae6a30407520048c87475ef553d00bbe done +2024-05-08T22:10:18Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 0B / 50.08MB 0.1s +2024-05-08T22:10:18Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.1s +2024-05-08T22:10:18Z #5 sha256:a9484357f753689b6bccb8c3d59bea9fae6a30407520048c87475ef553d00bbe 2.86kB / 2.86kB done +2024-05-08T22:10:18Z #5 sha256:a3f70e8faafb7f43f614ecb6de243945dfbfc5bbc8232cb3119687a1fd107366 12.36kB / 12.36kB done +2024-05-08T22:10:18Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 8.39MB / 31.43MB 0.2s +2024-05-08T22:10:18Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 4.19MB / 50.08MB 0.3s +2024-05-08T22:10:18Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 11.53MB / 31.43MB 0.3s +2024-05-08T22:10:18Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 9.44MB / 50.08MB 0.4s +2024-05-08T22:10:18Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 14.68MB / 31.43MB 0.4s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 22.02MB / 50.08MB 0.6s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.59MB / 150.89MB 0.6s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 20.97MB / 31.43MB 0.6s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 28.31MB / 50.08MB 0.9s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 28.31MB / 150.89MB 0.9s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 26.33MB / 31.43MB 0.9s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 31.46MB / 50.08MB 1.0s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 28.98MB / 31.43MB 1.0s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 36.70MB / 150.89MB 1.1s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 41.94MB / 50.08MB 1.2s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.2s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 1.4s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 55.57MB / 150.89MB 1.4s +2024-05-08T22:10:20Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 67.11MB / 150.89MB 1.5s +2024-05-08T22:10:20Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 80.78MB / 150.89MB 1.7s +2024-05-08T22:10:20Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.6s done +2024-05-08T22:10:20Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 +2024-05-08T22:10:20Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 1.9s done +2024-05-08T22:10:20Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 0B / 130.25MB 2.0s +2024-05-08T22:10:20Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 0B / 320.61MB 2.0s +2024-05-08T22:10:20Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 89.13MB / 150.89MB 2.3s +2024-05-08T22:10:21Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 8.39MB / 130.25MB 2.5s +2024-05-08T22:10:21Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 15.47MB / 130.25MB 2.8s +2024-05-08T22:10:21Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 98.19MB / 150.89MB 2.9s +2024-05-08T22:10:21Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 108.77MB / 150.89MB 3.4s +2024-05-08T22:10:21Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 17.83MB / 320.61MB 3.4s +2024-05-08T22:10:22Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 28.31MB / 130.25MB 3.7s +2024-05-08T22:10:22Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 118.49MB / 150.89MB 3.9s +2024-05-08T22:10:22Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 35.02MB / 130.25MB 4.0s +2024-05-08T22:10:22Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 38.80MB / 320.61MB 4.1s +2024-05-08T22:10:23Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 42.99MB / 130.25MB 4.6s +2024-05-08T22:10:23Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 136.31MB / 150.89MB 4.9s +2024-05-08T22:10:23Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 53.48MB / 130.25MB 4.9s +2024-05-08T22:10:23Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 55.57MB / 320.61MB 4.9s +2024-05-08T22:10:23Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 61.87MB / 130.25MB 5.2s +2024-05-08T22:10:24Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 147.85MB / 150.89MB 5.6s +2024-05-08T22:10:24Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 69.56MB / 130.25MB 5.6s +2024-05-08T22:10:24Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 82.84MB / 130.25MB 6.0s +2024-05-08T22:10:24Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 72.35MB / 320.61MB 6.0s +2024-05-08T22:10:24Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 92.27MB / 130.25MB 6.4s +2024-05-08T22:10:24Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 90.18MB / 320.61MB 6.5s +2024-05-08T22:10:25Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 102.76MB / 130.25MB 6.7s +2024-05-08T22:10:25Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.1s +2024-05-08T22:10:25Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 7.3s done +2024-05-08T22:10:25Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 111.15MB / 130.25MB 7.4s +2024-05-08T22:10:25Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 110.10MB / 320.61MB 7.4s +2024-05-08T22:10:25Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 0B / 235.72MB 7.5s +2024-05-08T22:10:26Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 120.59MB / 130.25MB 7.6s +2024-05-08T22:10:26Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 128.97MB / 130.25MB 8.0s +2024-05-08T22:10:27Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 126.89MB / 320.61MB 8.7s +2024-05-08T22:10:27Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 14.68MB / 235.72MB 8.7s +2024-05-08T22:10:27Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 144.70MB / 320.61MB 9.5s +2024-05-08T22:10:28Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 34.60MB / 235.72MB 9.6s +2024-05-08T22:10:28Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 130.25MB / 130.25MB 10.0s done +2024-05-08T22:10:28Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 161.50MB / 320.61MB 10.1s +2024-05-08T22:10:28Z #5 sha256:100efee3a6df091b03edf096a2e2220ec3108ad889958b23e6f4dcd5fe096312 3.86kB / 3.86kB 10.1s done +2024-05-08T22:10:28Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 0B / 1.69GB 10.2s +2024-05-08T22:10:29Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 47.19MB / 235.72MB 10.5s +2024-05-08T22:10:29Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 177.90MB / 320.61MB 11.2s +2024-05-08T22:10:29Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 61.83MB / 235.72MB 11.2s +2024-05-08T22:10:30Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 76.55MB / 235.72MB 11.7s +2024-05-08T22:10:30Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 194.74MB / 320.61MB 12.1s +2024-05-08T22:10:30Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 10.5s done +2024-05-08T22:10:30Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 88.36MB / 235.72MB 12.4s +2024-05-08T22:10:31Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 214.02MB / 320.61MB 12.9s +2024-05-08T22:10:31Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 102.76MB / 235.72MB 12.9s +2024-05-08T22:10:31Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 87.03MB / 1.69GB 13.4s +2024-05-08T22:10:32Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 240.12MB / 320.61MB 13.6s +2024-05-08T22:10:32Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 115.13MB / 235.72MB 13.6s +2024-05-08T22:10:32Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 +2024-05-08T22:10:32Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 131.07MB / 235.72MB 14.5s +2024-05-08T22:10:33Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 257.95MB / 320.61MB 15.1s +2024-05-08T22:10:33Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 148.90MB / 235.72MB 15.3s +2024-05-08T22:10:34Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 278.92MB / 320.61MB 15.7s +2024-05-08T22:10:34Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 161.48MB / 235.72MB 16.2s +2024-05-08T22:10:35Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 297.38MB / 320.61MB 16.5s +2024-05-08T22:10:35Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 173.02MB / 1.69GB 16.8s +2024-05-08T22:10:35Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 175.11MB / 235.72MB 17.0s +2024-05-08T22:10:36Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 315.62MB / 320.61MB 17.7s +2024-05-08T22:10:36Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 191.89MB / 235.72MB 17.7s +2024-05-08T22:10:36Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 205.46MB / 235.72MB 18.2s +2024-05-08T22:10:37Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 221.25MB / 235.72MB 18.6s +2024-05-08T22:10:37Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 234.88MB / 235.72MB 18.8s +2024-05-08T22:10:37Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.0s +2024-05-08T22:10:38Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 259.15MB / 1.69GB 20.2s +2024-05-08T22:10:40Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 345.33MB / 1.69GB 22.0s +2024-05-08T22:10:41Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 320.61MB / 320.61MB 22.8s +2024-05-08T22:10:42Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 235.72MB / 235.72MB 23.8s +2024-05-08T22:10:42Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 10.0s +2024-05-08T22:10:42Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 320.61MB / 320.61MB 23.9s done +2024-05-08T22:10:42Z #5 sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 0B / 6.76kB 24.3s +2024-05-08T22:10:42Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 436.97MB / 1.69GB 24.4s +2024-05-08T22:10:42Z #5 sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 6.76kB / 6.76kB 24.4s +2024-05-08T22:10:44Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 11.6s done +2024-05-08T22:10:44Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 529.53MB / 1.69GB 26.4s +2024-05-08T22:10:45Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 635.44MB / 1.69GB 27.5s +2024-05-08T22:10:47Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 235.72MB / 235.72MB 29.0s +2024-05-08T22:10:47Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 235.72MB / 235.72MB 29.0s done +2024-05-08T22:10:47Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc +2024-05-08T22:10:47Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 729.81MB / 1.69GB 29.2s +2024-05-08T22:10:47Z #5 sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 6.76kB / 6.76kB 29.4s done +2024-05-08T22:10:47Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 0B / 199.42MB 29.5s +2024-05-08T22:10:48Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 13.63MB / 199.42MB 30.4s +2024-05-08T22:10:48Z #5 sha256:b711a56866a1fafdab36f25e9cba33f645f7bd936509284c3075bf2cec6d6b5e 3.95kB / 3.95kB 30.4s +2024-05-08T22:10:49Z #5 sha256:b711a56866a1fafdab36f25e9cba33f645f7bd936509284c3075bf2cec6d6b5e 3.95kB / 3.95kB 30.5s done +2024-05-08T22:10:49Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 26.21MB / 199.42MB 30.8s +2024-05-08T22:10:49Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 0B / 137.99MB 30.9s +2024-05-08T22:10:49Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 48.23MB / 199.42MB 31.2s +2024-05-08T22:10:50Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 65.01MB / 199.42MB 31.6s +2024-05-08T22:10:50Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 17.83MB / 137.99MB 31.9s +2024-05-08T22:10:50Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 77.71MB / 199.42MB 32.1s +2024-05-08T22:10:50Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 815.73MB / 1.69GB 32.2s +2024-05-08T22:10:50Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 26.21MB / 137.99MB 32.2s +2024-05-08T22:10:50Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 39.85MB / 137.99MB 32.5s +2024-05-08T22:10:51Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 88.08MB / 199.42MB 32.6s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 52.43MB / 137.99MB 32.8s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 61.87MB / 137.99MB 33.0s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 70.25MB / 137.99MB 33.1s +2024-05-08T22:10:51Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 106.95MB / 199.42MB 33.4s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 77.59MB / 137.99MB 33.4s +2024-05-08T22:10:52Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 119.54MB / 199.42MB 33.7s +2024-05-08T22:10:52Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 92.39MB / 137.99MB 33.7s +2024-05-08T22:10:52Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 105.91MB / 137.99MB 34.1s +2024-05-08T22:10:52Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.2s +2024-05-08T22:10:52Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 115.34MB / 137.99MB 34.4s +2024-05-08T22:10:52Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 131.07MB / 199.42MB 34.5s +2024-05-08T22:10:53Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 122.53MB / 137.99MB 34.6s +2024-05-08T22:10:53Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 130.02MB / 137.99MB 34.9s +2024-05-08T22:10:54Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 137.99MB / 137.99MB 35.6s +2024-05-08T22:10:54Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 141.36MB / 199.42MB 35.8s +2024-05-08T22:10:54Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 153.95MB / 199.42MB 36.3s +2024-05-08T22:10:55Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 902.82MB / 1.69GB 36.6s +2024-05-08T22:10:55Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 167.77MB / 199.42MB 36.6s +2024-05-08T22:10:55Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 184.55MB / 199.42MB 36.9s +2024-05-08T22:10:55Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 198.18MB / 199.42MB 37.4s +2024-05-08T22:10:56Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 988.81MB / 1.69GB 38.4s +2024-05-08T22:10:57Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.2s +2024-05-08T22:10:59Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 137.99MB / 137.99MB 40.8s +2024-05-08T22:10:59Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 137.99MB / 137.99MB 40.9s done +2024-05-08T22:10:59Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.08GB / 1.69GB 41.1s +2024-05-08T22:11:00Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 199.42MB / 199.42MB 42.4s +2024-05-08T22:11:02Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.17GB / 1.69GB 44.1s +2024-05-08T22:11:02Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 15.4s +2024-05-08T22:11:04Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.26GB / 1.69GB 46.0s +2024-05-08T22:11:05Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 199.42MB / 199.42MB 47.5s +2024-05-08T22:11:06Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 199.42MB / 199.42MB 47.7s done +2024-05-08T22:11:07Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.34GB / 1.69GB 48.7s +2024-05-08T22:11:07Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 20.4s +2024-05-08T22:11:10Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.43GB / 1.69GB 51.5s +2024-05-08T22:11:11Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 23.6s done +2024-05-08T22:11:11Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.52GB / 1.69GB 53.3s +2024-05-08T22:11:12Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c +2024-05-08T22:11:13Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.60GB / 1.69GB 54.7s +2024-05-08T22:11:16Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.69GB / 1.69GB 58.4s +2024-05-08T22:11:17Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 5.1s +2024-05-08T22:11:22Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.69GB / 1.69GB 63.6s +2024-05-08T22:11:23Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 10.2s +2024-05-08T22:11:26Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 13.6s done +2024-05-08T22:11:26Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.69GB / 1.69GB 68.4s done +2024-05-08T22:11:27Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 0.1s +2024-05-08T22:11:32Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 5.2s +2024-05-08T22:11:37Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 10.2s +2024-05-08T22:11:42Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 15.2s +2024-05-08T22:11:47Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 20.3s +2024-05-08T22:11:52Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 25.6s done +2024-05-08T22:11:53Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f +2024-05-08T22:11:58Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 5.1s +2024-05-08T22:12:03Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 10.1s +2024-05-08T22:12:08Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 15.2s +2024-05-08T22:12:13Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 20.3s +2024-05-08T22:12:17Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 23.5s done +2024-05-08T22:12:17Z #5 extracting sha256:100efee3a6df091b03edf096a2e2220ec3108ad889958b23e6f4dcd5fe096312 done +2024-05-08T22:12:17Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 +2024-05-08T22:12:22Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 5.0s +2024-05-08T22:12:28Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 10.1s +2024-05-08T22:12:33Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 15.4s +2024-05-08T22:12:38Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 20.9s +2024-05-08T22:12:44Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 26.2s +2024-05-08T22:12:49Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 31.8s +2024-05-08T22:12:54Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 37.0s +2024-05-08T22:12:59Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 42.1s +2024-05-08T22:13:05Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 47.1s +2024-05-08T22:13:10Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 52.2s +2024-05-08T22:13:15Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 57.3s +2024-05-08T22:13:20Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 62.3s +2024-05-08T22:13:25Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 67.4s +2024-05-08T22:13:30Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 72.4s +2024-05-08T22:13:35Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 77.5s +2024-05-08T22:13:40Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 82.6s +2024-05-08T22:13:45Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 87.7s +2024-05-08T22:13:50Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 92.7s +2024-05-08T22:13:55Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 97.8s +2024-05-08T22:14:01Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 103.1s +2024-05-08T22:14:06Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 108.1s +2024-05-08T22:14:11Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 113.3s +2024-05-08T22:14:16Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 118.3s +2024-05-08T22:14:21Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 123.7s +2024-05-08T22:14:26Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 128.8s +2024-05-08T22:14:31Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 133.9s +2024-05-08T22:14:36Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 139.0s +2024-05-08T22:14:42Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 144.1s +2024-05-08T22:14:47Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 149.2s +2024-05-08T22:14:52Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 154.3s +2024-05-08T22:14:58Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 160.1s +2024-05-08T22:15:03Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 166.0s +2024-05-08T22:15:09Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 171.0s +2024-05-08T22:15:14Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 176.1s +2024-05-08T22:15:19Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 181.2s +2024-05-08T22:15:24Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 186.4s +2024-05-08T22:15:29Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 191.4s +2024-05-08T22:15:34Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 196.5s +2024-05-08T22:15:39Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 201.9s +2024-05-08T22:15:44Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 207.0s +2024-05-08T22:15:50Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 212.3s +2024-05-08T22:15:56Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 219.1s +2024-05-08T22:16:04Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 226.1s +2024-05-08T22:16:09Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 231.3s +2024-05-08T22:16:14Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 236.4s +2024-05-08T22:16:19Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 241.7s +2024-05-08T22:16:24Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 246.9s +2024-05-08T22:16:31Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 253.7s +2024-05-08T22:16:36Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 258.7s +2024-05-08T22:16:41Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 263.8s +2024-05-08T22:16:47Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 269.1s +2024-05-08T22:16:48Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 270.1s done +2024-05-08T22:16:53Z #5 extracting sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 +2024-05-08T22:16:53Z #5 extracting sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 done +2024-05-08T22:16:54Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e +2024-05-08T22:16:59Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 5.4s +2024-05-08T22:17:06Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 12.6s +2024-05-08T22:17:12Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 17.8s +2024-05-08T22:17:17Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 22.9s +2024-05-08T22:17:22Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 28.1s +2024-05-08T22:17:27Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 33.2s +2024-05-08T22:17:33Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 39.3s +2024-05-08T22:17:38Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 44.4s +2024-05-08T22:17:43Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 49.4s +2024-05-08T22:17:48Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 54.4s +2024-05-08T22:17:50Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 56.5s done +2024-05-08T22:17:51Z #5 extracting sha256:b711a56866a1fafdab36f25e9cba33f645f7bd936509284c3075bf2cec6d6b5e done +2024-05-08T22:17:51Z #5 extracting sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d +2024-05-08T22:17:56Z #5 extracting sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 5.0s +2024-05-08T22:18:00Z #5 extracting sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 8.4s done +2024-05-08T22:18:01Z #5 DONE 463.0s +2024-05-08T22:18:01Z +2024-05-08T22:18:01Z #6 [2/2] RUN umask 0000 && pip uninstall -y ravenpy birdhouse-birdy && pip install --no-cache-dir --no-deps ravenpy==0.13.1 birdhouse-birdy==0.8.7 && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 && mamba clean --all --yes +2024-05-08T22:18:03Z #6 1.842 Found existing installation: ravenpy 0.13.0 +2024-05-08T22:18:03Z #6 1.855 Uninstalling ravenpy-0.13.0: +2024-05-08T22:18:03Z #6 1.916 Successfully uninstalled ravenpy-0.13.0 +2024-05-08T22:18:03Z #6 2.249 Found existing installation: birdhouse-birdy 0.8.6 +2024-05-08T22:18:03Z #6 2.262 Uninstalling birdhouse-birdy-0.8.6: +2024-05-08T22:18:03Z #6 2.335 Successfully uninstalled birdhouse-birdy-0.8.6 +2024-05-08T22:18:03Z #6 2.339 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +2024-05-08T22:18:05Z #6 3.658 Collecting ravenpy==0.13.1 +2024-05-08T22:18:05Z #6 3.700 Downloading ravenpy-0.13.1-py3-none-any.whl.metadata (8.5 kB) +2024-05-08T22:18:05Z #6 3.729 Collecting birdhouse-birdy==0.8.7 +2024-05-08T22:18:05Z #6 3.739 Downloading birdhouse_birdy-0.8.7-py3-none-any.whl.metadata (13 kB) +2024-05-08T22:18:05Z #6 3.752 Downloading ravenpy-0.13.1-py3-none-any.whl (6.3 MB) +2024-05-08T22:18:05Z #6 3.839 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 91.7 MB/s eta 0:00:00 +2024-05-08T22:18:05Z #6 3.847 Downloading birdhouse_birdy-0.8.7-py3-none-any.whl (46 kB) +2024-05-08T22:18:05Z #6 3.850 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.0/47.0 kB 140.8 MB/s eta 0:00:00 +2024-05-08T22:18:05Z #6 3.872 Installing collected packages: ravenpy, birdhouse-birdy +2024-05-08T22:18:06Z #6 4.744 Successfully installed birdhouse-birdy-0.8.7 ravenpy-0.13.1 +2024-05-08T22:18:06Z #6 4.745 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +2024-05-08T22:19:27Z #6 86.48 Transaction +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 Prefix: /opt/conda/envs/birdy +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 Updating specs: +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 - jupyterlab-git==0.44.0 +2024-05-08T22:19:27Z #6 86.48 - ca-certificates +2024-05-08T22:19:27Z #6 86.48 - certifi +2024-05-08T22:19:27Z #6 86.48 - openssl +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.50 Package Version Build Channel Size +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 Upgrade: +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 - jupyterlab-git 0.8.2 py_0 conda-forge Cached +2024-05-08T22:19:27Z #6 86.50 + jupyterlab-git 0.44.0 pyhd8ed1ab_0 conda-forge 543kB +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Downgrade: +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 - nbdime 4.0.1 pyhd8ed1ab_0 conda-forge Cached +2024-05-08T22:19:27Z #6 86.50 + nbdime 3.2.1 pyhd8ed1ab_0 conda-forge 4MB +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Summary: +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Upgrade: 1 packages +2024-05-08T22:19:27Z #6 86.50 Downgrade: 1 packages +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Total download: 5MB +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:50Z #6 86.51 Confirm changes: [Y/n] +2024-05-08T22:19:50Z #6 108.9 Looking for: ['jupyterlab-git==0.44.0'] +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 Pinned packages: +2024-05-08T22:19:50Z #6 108.9 - python 3.11.* +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 Downloading and Extracting Packages: ...working... done +2024-05-08T22:19:50Z #6 108.9 Preparing transaction: ...working... done +2024-05-08T22:19:50Z #6 108.9 Verifying transaction: ...working... done +2024-05-08T22:19:57Z #6 109.3 Executing transaction: ...working... Disabling: jupyterlab_git +2024-05-08T22:19:57Z #6 115.6 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-05-08T22:19:57Z #6 115.6 +2024-05-08T22:19:57Z #6 115.6 done +2024-05-08T22:20:01Z #6 120.2 Will remove 2 (4.3 MB) tarball(s). +2024-05-08T22:20:01Z #6 120.2 Will remove 1 index cache(s). +2024-05-08T22:20:01Z #6 120.2 There are no unused package(s) to remove. +2024-05-08T22:20:01Z #6 120.2 There are no tempfile(s) to remove. +2024-05-08T22:20:01Z #6 120.2 There are no logfile(s) to remove. +2024-05-08T22:20:02Z #6 DONE 121.1s +2024-05-08T22:20:02Z +2024-05-08T22:20:02Z #7 exporting to image +2024-05-08T22:20:02Z #7 exporting layers +2024-05-08T22:20:03Z #7 exporting layers 0.7s done +2024-05-08T22:20:03Z #7 writing image sha256:4c426e57d3384620f4d7cd758f878ae96c0747daf45ba5b38ba7313d1b481bef +2024-05-08T22:20:03Z #7 writing image sha256:4c426e57d3384620f4d7cd758f878ae96c0747daf45ba5b38ba7313d1b481bef done +2024-05-08T22:20:03Z #7 naming to docker.io/pavics/workflow-tests:py311-240506-update240508 done +2024-05-08T22:20:03Z #7 DONE 0.7s +2024-05-08T22:20:03Z Pushing index.docker.io/pavics/workflow-tests:py311-240506-update240508... +2024-05-08T22:20:09Z Done! +2024-05-08T22:20:09Z Build finished diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt new file mode 100644 index 0000000..ad4941c --- /dev/null +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -0,0 +1,894 @@ +Started by user Long Vu +Replayed #8 + > git rev-parse --is-inside-work-tree # timeout=10 +Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching origin... +Fetching upstream changes from origin + > git --version # timeout=10 + > git config --get remote.origin.url # timeout=10 + > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 +Seen branch in repository origin/current-production-version +Seen branch in repository origin/devel-new-extensions +Seen branch in repository origin/extended_tests +Seen branch in repository origin/master +Seen branch in repository origin/new-build-no-jupyter-dash +Seen branch in repository origin/new-build-no-ravenpy +Seen branch in repository origin/new-docker-build +Seen branch in repository origin/new-docker-build-with-jenkins-override +Seen branch in repository origin/override-jenkins-config +Seen branch in repository origin/test-dockerhub-build +Seen branch in repository origin/twitcher_perf_test_notebook +Seen 11 remote branches +Obtained Jenkinsfile from ca65e709adbfc074ee946c260be793fdca08d1b9 +Running in Durability level: MAX_SURVIVABILITY +[Pipeline] Start of Pipeline +[Pipeline] node +Running on linux1 in /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Declarative: Checkout SCM) +[Pipeline] checkout +No credentials specified +Fetching changes from the remote Git repository +Fetching without tags + > git rev-parse --is-inside-work-tree # timeout=10 + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git --version # timeout=10 + > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision ca65e709adbfc074ee946c260be793fdca08d1b9 (new-docker-build-with-jenkins-override) +Commit message: "Merge remote-tracking branch 'origin/new-docker-build' into new-docker-build-with-jenkins-override" + > git config core.sparsecheckout # timeout=10 + > git checkout -f ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 + > git rev-list --no-walk ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 +[Pipeline] } +[Pipeline] // stage +[Pipeline] withEnv +[Pipeline] { +[Pipeline] isUnix +[Pipeline] sh ++ docker inspect -f . pavics/workflow-tests:py311-240506-update240508 +. +[Pipeline] withDockerContainer +linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/cker-build-with-jenkins-override --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506-update240508 cat +$ docker top e7df9406a5158c78f2d19b6e5ddb3af8f42f0a02b0d40ca6aa64da61603d97e6 -eo pid,comm +[Pipeline] { +[Pipeline] ansiColor +[Pipeline] { +[Pipeline] timestamps +[Pipeline] { +[Pipeline] timeout +[2024-05-09T16:12:44.737Z] Timeout set to expire in 2 hr 0 min +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Run tests) +[Pipeline] script +[Pipeline] { +[Pipeline] withCredentials +[2024-05-09T16:12:45.537Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[Pipeline] { +[Pipeline] sh +[2024-05-09T16:12:46.010Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-09T16:12:46.010Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T16:12:46.010Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T16:12:46.010Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T16:12:46.010Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T16:12:46.010Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T16:12:46.010Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T16:12:46.010Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T16:12:46.010Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T16:12:46.010Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T16:12:46.010Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T16:12:46.010Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T16:12:46.010Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T16:12:46.010Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T16:12:46.010Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T16:12:46.010Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T16:12:46.010Z] + [ -n https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh ] +[2024-05-09T16:12:46.010Z] + TMP_CONF_OVERRIDE=/tmp/jenkins_conf_override +[2024-05-09T16:12:46.010Z] + rm -vf /tmp/jenkins_conf_override +[2024-05-09T16:12:46.010Z] removed '/tmp/jenkins_conf_override' +[2024-05-09T16:12:46.010Z] + curl --silent https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh +[2024-05-09T16:12:46.010Z] + tee /tmp/jenkins_conf_override +[2024-05-09T16:12:46.271Z] #!/bin/sh +[2024-05-09T16:12:46.271Z] # Jenkins params override script to test custom branch, +[2024-05-09T16:12:46.271Z] # good for testing notebook fixes for new Jupyter env build. +[2024-05-09T16:12:46.271Z] +[2024-05-09T16:12:46.271Z] PAVICS_SDI_BRANCH="fix_nbs_jupyter_alpha" +[2024-05-09T16:12:46.271Z] #FINCH_BRANCH="" +[2024-05-09T16:12:46.271Z] PAVICS_LANDING_BRANCH="fix_nbs_jupyter_alpha" +[2024-05-09T16:12:46.271Z] +[2024-05-09T16:12:46.271Z] # Good for refreshing notebook output. +[2024-05-09T16:12:46.271Z] SAVE_RESULTING_NOTEBOOK_TIMEOUT="600"+ . /tmp/jenkins_conf_override +[2024-05-09T16:12:46.271Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.271Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.271Z] + SAVE_RESULTING_NOTEBOOK_TIMEOUT=600 +[2024-05-09T16:12:46.271Z] + git clean -fdx +[2024-05-09T16:12:46.271Z] Removing .pytest_cache/ +[2024-05-09T16:12:46.271Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha/ +[2024-05-09T16:12:46.271Z] Removing RavenPy-master/ +[2024-05-09T16:12:46.271Z] Removing __pycache__/ +[2024-05-09T16:12:46.271Z] Removing buildout/ +[2024-05-09T16:12:46.271Z] Removing esgf-compute-api-devel/ +[2024-05-09T16:12:46.271Z] Removing finch-master/ +[2024-05-09T16:12:46.271Z] Removing pavics-sdi-fix_nbs_jupyter_alpha/ +[2024-05-09T16:12:46.271Z] Removing raven-main/ +[2024-05-09T16:12:46.271Z] + ./downloadrepos +[2024-05-09T16:12:46.271Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T16:12:46.271Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-05-09T16:12:46.271Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T16:12:46.271Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T16:12:46.271Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T16:12:46.271Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T16:12:46.271Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T16:12:46.271Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-05-09T16:12:46.271Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T16:12:46.271Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T16:12:46.271Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T16:12:46.271Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T16:12:46.271Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T16:12:46.271Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T16:12:46.271Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T16:12:46.272Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T16:12:46.272Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T16:12:46.272Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T16:12:46.272Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T16:12:46.272Z] + rm -rf pavics-sdi-* +[2024-05-09T16:12:46.272Z] + ls +[2024-05-09T16:12:46.272Z] + grep pavics-sdi +[2024-05-09T16:12:46.272Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.272Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-09T16:12:46.272Z] + shift +[2024-05-09T16:12:46.272Z] + branch=fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.272Z] + shift +[2024-05-09T16:12:46.272Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-05-09T16:12:46.272Z] + tar xz +[2024-05-09T16:12:49.540Z] + ls +[2024-05-09T16:12:49.540Z] + grep pavics-sdi +[2024-05-09T16:12:49.540Z] pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T16:12:49.540Z] + set +x +[2024-05-09T16:12:49.540Z] + rm -rf finch-* +[2024-05-09T16:12:49.540Z] + ls +[2024-05-09T16:12:49.540Z] + grep finch +[2024-05-09T16:12:49.540Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-09T16:12:49.540Z] + github_repo=https://github.com/bird-house/finch +[2024-05-09T16:12:49.540Z] + shift +[2024-05-09T16:12:49.540Z] + branch=master +[2024-05-09T16:12:49.540Z] + shift +[2024-05-09T16:12:49.540Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-09T16:12:49.540Z] + tar xz +[2024-05-09T16:12:50.471Z] + ls +[2024-05-09T16:12:50.471Z] + grep finch +[2024-05-09T16:12:50.471Z] finch-master +[2024-05-09T16:12:50.471Z] + set +x +[2024-05-09T16:12:50.471Z] + rm -rf PAVICS-landing-* +[2024-05-09T16:12:50.471Z] + ls +[2024-05-09T16:12:50.471Z] + grep PAVICS-landing +[2024-05-09T16:12:50.471Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha +[2024-05-09T16:12:50.471Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-09T16:12:50.471Z] + shift +[2024-05-09T16:12:50.472Z] + branch=fix_nbs_jupyter_alpha +[2024-05-09T16:12:50.472Z] + shift +[2024-05-09T16:12:50.472Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-05-09T16:12:50.472Z] + tar xz +[2024-05-09T16:13:00.411Z] + ls +[2024-05-09T16:13:00.411Z] + grep PAVICS-landing +[2024-05-09T16:13:00.411Z] PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T16:13:00.411Z] + set +x +[2024-05-09T16:13:00.411Z] + rm -rf raven-* +[2024-05-09T16:13:00.411Z] + ls +[2024-05-09T16:13:00.411Z] + grep raven +[2024-05-09T16:13:00.411Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-09T16:13:00.411Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-09T16:13:00.411Z] + shift +[2024-05-09T16:13:00.411Z] + branch=main +[2024-05-09T16:13:00.411Z] + shift +[2024-05-09T16:13:00.411Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-09T16:13:00.411Z] + tar xz +[2024-05-09T16:13:01.340Z] + ls +[2024-05-09T16:13:01.340Z] + grep raven +[2024-05-09T16:13:01.340Z] raven-main +[2024-05-09T16:13:01.340Z] + set +x +[2024-05-09T16:13:01.340Z] + rm -rf RavenPy-* +[2024-05-09T16:13:01.340Z] + ls +[2024-05-09T16:13:01.340Z] + grep RavenPy +[2024-05-09T16:13:01.340Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-05-09T16:13:01.340Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-09T16:13:01.340Z] + shift +[2024-05-09T16:13:01.340Z] + branch=master +[2024-05-09T16:13:01.340Z] + shift +[2024-05-09T16:13:01.340Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-05-09T16:13:01.340Z] + tar xz +[2024-05-09T16:13:03.229Z] + ls +[2024-05-09T16:13:03.229Z] + grep RavenPy +[2024-05-09T16:13:03.229Z] RavenPy-master +[2024-05-09T16:13:03.229Z] + set +x +[2024-05-09T16:13:03.229Z] + rm -rf esgf-compute-api-* +[2024-05-09T16:13:03.229Z] + ls +[2024-05-09T16:13:03.229Z] + grep esgf-compute-api +[2024-05-09T16:13:03.229Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-09T16:13:03.229Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-09T16:13:03.229Z] + shift +[2024-05-09T16:13:03.229Z] + branch=devel +[2024-05-09T16:13:03.229Z] + shift +[2024-05-09T16:13:03.229Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-09T16:13:03.229Z] + tar xz +[2024-05-09T16:13:04.163Z] + ls +[2024-05-09T16:13:04.163Z] + grep esgf-compute-api +[2024-05-09T16:13:04.163Z] esgf-compute-api-devel +[2024-05-09T16:13:04.163Z] + set +x +[2024-05-09T16:13:04.163Z] + echo fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + echo Ouranosinc/pavics-sdi +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-09T16:13:04.163Z] + echo master +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + FINCH_BRANCH=master +[2024-05-09T16:13:04.163Z] + echo bird-house/finch +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + FINCH_REPO_NAME=finch +[2024-05-09T16:13:04.163Z] + echo fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + echo Ouranosinc/PAVICS-landing +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-09T16:13:04.163Z] + echo main +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + RAVEN_BRANCH=main +[2024-05-09T16:13:04.163Z] + echo Ouranosinc/raven +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + RAVEN_REPO_NAME=raven +[2024-05-09T16:13:04.163Z] + echo master +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + RAVENPY_BRANCH=master +[2024-05-09T16:13:04.163Z] + echo CSHS-CWRA/RavenPy +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-09T16:13:04.163Z] + echo devel +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-09T16:13:04.163Z] + echo ESGF/esgf-compute-api +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-09T16:13:04.163Z] + echo pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + echo finch-master +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + FINCH_DIR=finch-master +[2024-05-09T16:13:04.164Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + echo raven-main +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + RAVEN_DIR=raven-main +[2024-05-09T16:13:04.164Z] + echo RavenPy-master +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + RAVENPY_DIR=RavenPy-master +[2024-05-09T16:13:04.164Z] + echo esgf-compute-api-devel +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + VERIFY_SSL=true +[2024-05-09T16:13:04.164Z] + [ xtrue = xfalse ] +[2024-05-09T16:13:04.164Z] + rm -v finch-master/setup.cfg +[2024-05-09T16:13:04.164Z] removed 'finch-master/setup.cfg' +[2024-05-09T16:13:04.164Z] + rm -v raven-main/setup.cfg +[2024-05-09T16:13:04.164Z] removed 'raven-main/setup.cfg' +[2024-05-09T16:13:04.164Z] + rm -v raven-main/pyproject.toml +[2024-05-09T16:13:04.164Z] removed 'raven-main/pyproject.toml' +[2024-05-09T16:13:04.164Z] + rm -v RavenPy-master/setup.cfg +[2024-05-09T16:13:04.164Z] removed 'RavenPy-master/setup.cfg' +[2024-05-09T16:13:04.164Z] + rm -v RavenPy-master/tox.ini +[2024-05-09T16:13:04.164Z] removed 'RavenPy-master/tox.ini' +[2024-05-09T16:13:04.164Z] + rm -v RavenPy-master/pyproject.toml +[2024-05-09T16:13:04.164Z] removed 'RavenPy-master/pyproject.toml' +[2024-05-09T16:13:04.164Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-09T16:13:04.164Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-09T16:13:04.164Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-09T16:13:04.164Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_MAGPIE_AUTH=false +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_PAVICS_SDI_REPO=true +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_FINCH_REPO=true +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_PAVICS_LANDING_REPO=true +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_RAVEN_REPO=false +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_RAVENPY_REPO=false +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= +[2024-05-09T16:13:04.164Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.164Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb +[2024-05-09T16:13:04.164Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.164Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-05-09T16:13:04.164Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb +[2024-05-09T16:13:04.164Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-05-09T16:13:04.164Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + THIS_FILE=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + dirname /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + THIS_DIR=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators +[2024-05-09T16:13:04.164Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-09T16:13:04.164Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-09T16:13:04.164Z] + unzip /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-05-09T16:13:04.164Z] Archive: /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-05-09T16:13:04.937Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-05-09T16:13:04.937Z] + ln -sv /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-05-09T16:13:04.937Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' +[2024-05-09T16:13:04.937Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.937Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.937Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.937Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.937Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-09T16:13:04.937Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-09T16:13:04.937Z] + [ -n ] +[2024-05-09T16:13:04.937Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-09T16:13:04.937Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-09T16:13:04.937Z] Will run notebooks against pavics.ouranos.ca +[2024-05-09T16:13:04.937Z] + [ -z ] +[2024-05-09T16:13:04.938Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-05-09T16:13:06.302Z] + git diff +[2024-05-09T16:13:06.302Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-09T16:13:06.302Z] + [ -n ] +[2024-05-09T16:13:06.302Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --nbval-sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-05-09T16:13:08.820Z] ============================= test session starts ============================== +[2024-05-09T16:13:08.820Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-09T16:13:08.820Z] rootdir: /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[2024-05-09T16:13:08.820Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-09T16:13:08.820Z] collected 219 items +[2024-05-09T16:13:08.820Z] +[2024-05-09T16:13:12.102Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-05-09T16:13:36.123Z] ..... [ 2%] +[2024-05-09T16:13:39.393Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-05-09T16:13:45.696Z] ...... [ 5%] +[2024-05-09T16:13:47.585Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-05-09T16:13:54.064Z] ..... [ 8%] +[2024-05-09T16:13:54.625Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-05-09T16:14:13.605Z] ....... [ 12%] +[2024-05-09T16:14:25.472Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 14%] +[2024-05-09T16:16:38.024Z] ........ [ 17%] +[2024-05-09T16:16:39.952Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-05-09T16:16:47.043Z] ............... [ 25%] +[2024-05-09T16:16:49.608Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-05-09T16:16:55.169Z] .... [ 27%] +[2024-05-09T16:16:57.064Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 28%] +[2024-05-09T16:17:02.005Z] .... [ 30%] +[2024-05-09T16:17:10.120Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-05-09T16:17:17.046Z] ..... [ 32%] +[2024-05-09T16:17:23.564Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb ... [ 34%] +[2024-05-09T16:17:25.448Z] .... [ 36%] +[2024-05-09T16:17:26.380Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-05-09T16:17:29.199Z] .... [ 38%] +[2024-05-09T16:17:47.257Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-05-09T16:19:24.289Z] ........................... [ 51%] +[2024-05-09T16:19:24.289Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-05-09T16:19:25.109Z] ... [ 52%] +[2024-05-09T16:19:26.035Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-05-09T16:19:43.609Z] ........................ [ 64%] +[2024-05-09T16:19:46.903Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-05-09T16:19:51.369Z] ..... [ 67%] +[2024-05-09T16:20:00.407Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 72%] +[2024-05-09T16:20:08.713Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-05-09T16:20:09.670Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-05-09T16:20:12.773Z] ...... [ 78%] +[2024-05-09T16:20:19.314Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-05-09T16:20:29.243Z] ............. [ 84%] +[2024-05-09T16:20:37.368Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-05-09T16:20:54.177Z] ....s [ 87%] +[2024-05-09T16:21:02.263Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-05-09T16:21:14.111Z] .. [ 88%] +[2024-05-09T16:21:26.340Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-05-09T16:22:13.895Z] ...... [ 91%] +[2024-05-09T16:22:13.895Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-05-09T16:24:09.617Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-05-09T16:24:09.617Z] +[2024-05-09T16:24:09.617Z] ================== 218 passed, 1 skipped in 653.96s (0:10:53) ================== +[2024-05-09T16:24:09.617Z] + EXIT_CODE=0 +[2024-05-09T16:24:09.617Z] + echo true +[2024-05-09T16:24:09.617Z] + tr [:upper:] [:lower:] +[2024-05-09T16:24:09.617Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-09T16:24:09.617Z] + [ xtrue = xtrue ] +[2024-05-09T16:24:09.617Z] + mkdir -p buildout +[2024-05-09T16:24:09.617Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] + filename=CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] + echo CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] + sed s/.ipynb$// +[2024-05-09T16:24:09.617Z] + filename=CaSR_basic +[2024-05-09T16:24:09.617Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-05-09T16:24:09.617Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-05-09T16:24:36.175Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb +[2024-05-09T16:24:36.175Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-05-09T16:24:36.175Z] + filename=WCS_example.ipynb +[2024-05-09T16:24:36.175Z] + echo WCS_example.ipynb +[2024-05-09T16:24:36.175Z] + sed s/.ipynb$// +[2024-05-09T16:24:36.175Z] + filename=WCS_example +[2024-05-09T16:24:36.175Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-05-09T16:24:36.176Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-05-09T16:24:36.176Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-05-09T16:24:36.431Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:24:36.431Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:24:36.431Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:24:36.431Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:24:46.379Z] [NbConvertApp] Writing 144381 bytes to buildout/WCS_example.output.ipynb +[2024-05-09T16:24:46.379Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-05-09T16:24:46.379Z] + filename=WFS_example.ipynb +[2024-05-09T16:24:46.379Z] + echo+ WFS_example.ipynb +[2024-05-09T16:24:46.379Z] sed s/.ipynb$// +[2024-05-09T16:24:46.379Z] + filename=WFS_example +[2024-05-09T16:24:46.379Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-05-09T16:24:46.379Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-05-09T16:24:48.279Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-05-09T16:24:49.207Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:24:49.207Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:24:49.207Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:24:49.207Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:24:57.327Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb +[2024-05-09T16:24:57.327Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-05-09T16:24:57.327Z] + filename=WMS_example.ipynb +[2024-05-09T16:24:57.327Z] + echo WMS_example.ipynb +[2024-05-09T16:24:57.327Z] + sed s/.ipynb$// +[2024-05-09T16:24:57.327Z] + filename=WMS_example +[2024-05-09T16:24:57.327Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-05-09T16:24:57.327Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-05-09T16:24:59.296Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-05-09T16:24:59.865Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:24:59.865Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:24:59.865Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:24:59.865Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:25:06.425Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb +[2024-05-09T16:25:06.425Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-05-09T16:25:06.425Z] + filename=climex.ipynb +[2024-05-09T16:25:06.425Z] + echo climex.ipynb +[2024-05-09T16:25:06.425Z] + sed s/.ipynb$// +[2024-05-09T16:25:06.425Z] + filename=climex +[2024-05-09T16:25:06.425Z] + [ -e buildout/climex.output.ipynb ] +[2024-05-09T16:25:06.425Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-05-09T16:25:07.365Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook +[2024-05-09T16:25:08.298Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:25:08.298Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:25:08.298Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:25:08.298Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:27:44.790Z] [NbConvertApp] Writing 1781288 bytes to buildout/climex.output.ipynb +[2024-05-09T16:27:44.790Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] + + sed s/.ipynb$// +[2024-05-09T16:27:44.790Z] echo eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] + filename=eccc-geoapi-climate-stations +[2024-05-09T16:27:44.790Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-05-09T16:27:44.790Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-05-09T16:27:44.790Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:27:44.790Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:27:44.790Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:27:44.790Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:27:45.357Z] [NbConvertApp] Writing 279392 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-05-09T16:27:45.617Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:45.617Z] + filename=eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:45.617Z] + echo eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:45.617Z] + sed s/.ipynb$// +[2024-05-09T16:27:45.617Z] + filename=eccc-geoapi-xclim +[2024-05-09T16:27:45.617Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-05-09T16:27:45.617Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:47.519Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-05-09T16:27:48.543Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:27:48.543Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:27:48.543Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:27:48.543Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:27:56.665Z] [NbConvertApp] Writing 108114 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-05-09T16:27:56.665Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-05-09T16:27:56.665Z] + filename=esgf-dap.ipynb +[2024-05-09T16:27:56.665Z] + echo esgf-dap.ipynb +[2024-05-09T16:27:56.665Z] + sed s/.ipynb$// +[2024-05-09T16:27:56.665Z] + filename=esgf-dap +[2024-05-09T16:27:56.665Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-05-09T16:27:56.665Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-05-09T16:27:58.556Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-05-09T16:27:59.492Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:27:59.492Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:27:59.492Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:27:59.492Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:06.039Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb +[2024-05-09T16:28:06.039Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-05-09T16:28:06.039Z] + filename=forecasts.ipynb +[2024-05-09T16:28:06.039Z] + echo forecasts.ipynb +[2024-05-09T16:28:06.039Z] + sed s/.ipynb$// +[2024-05-09T16:28:06.039Z] + filename=forecasts +[2024-05-09T16:28:06.039Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-05-09T16:28:06.039Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-05-09T16:28:07.933Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook +[2024-05-09T16:28:08.866Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:08.866Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:08.866Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:08.866Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:26.931Z] [NbConvertApp] Writing 164984 bytes to buildout/forecasts.output.ipynb +[2024-05-09T16:28:26.931Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] + filename=jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] + echo jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] + sed s/.ipynb$// +[2024-05-09T16:28:26.931Z] + filename=jupyter_extensions +[2024-05-09T16:28:26.931Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-05-09T16:28:26.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-05-09T16:28:26.931Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:26.931Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:26.931Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:26.931Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:31.100Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb +[2024-05-09T16:28:31.100Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-05-09T16:28:31.100Z] + filename=opendap.ipynb +[2024-05-09T16:28:31.100Z] + echo opendap.ipynb +[2024-05-09T16:28:31.100Z] + sed s/.ipynb$// +[2024-05-09T16:28:31.100Z] + filename=opendap +[2024-05-09T16:28:31.100Z] + [ -e buildout/opendap.output.ipynb ] +[2024-05-09T16:28:31.100Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-05-09T16:28:32.520Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook +[2024-05-09T16:28:33.448Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:33.448Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:33.448Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:33.448Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:38.693Z] [NbConvertApp] Writing 95159 bytes to buildout/opendap.output.ipynb +[2024-05-09T16:28:38.693Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-09T16:28:38.693Z] + filename=pavics_thredds.ipynb +[2024-05-09T16:28:38.693Z] + echo pavics_thredds.ipynb +[2024-05-09T16:28:38.693Z] + sed s/.ipynb$// +[2024-05-09T16:28:38.693Z] + filename=pavics_thredds +[2024-05-09T16:28:38.693Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-05-09T16:28:38.693Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-09T16:28:40.060Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-05-09T16:28:40.995Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:40.995Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:40.995Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:40.995Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:43.510Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T16:28:43.510Z] context: Access to service is forbidden. +[2024-05-09T16:28:43.510Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T16:28:43.511Z] context: Access to service is forbidden. +[2024-05-09T16:28:45.399Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb +[2024-05-09T16:28:45.399Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-05-09T16:28:45.399Z] + filename=regridding.ipynb +[2024-05-09T16:28:45.399Z] + echo regridding.ipynb +[2024-05-09T16:28:45.399Z] + sed s/.ipynb$// +[2024-05-09T16:28:45.399Z] + filename=regridding +[2024-05-09T16:28:45.399Z] + [ -e buildout/regridding.output.ipynb ] +[2024-05-09T16:28:45.399Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-05-09T16:28:46.765Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook +[2024-05-09T16:28:48.143Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:48.143Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:48.143Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:48.143Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:30:39.593Z] [NbConvertApp] Writing 1239616 bytes to buildout/regridding.output.ipynb +[2024-05-09T16:30:39.593Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-05-09T16:30:39.593Z] + filename=rendering.ipynb +[2024-05-09T16:30:39.593Z] + echo rendering.ipynb +[2024-05-09T16:30:39.593Z] + sed s/.ipynb$// +[2024-05-09T16:30:39.593Z] + filename=rendering +[2024-05-09T16:30:39.593Z] + [ -e buildout/rendering.output.ipynb ] +[2024-05-09T16:30:39.593Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-05-09T16:30:39.593Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook +[2024-05-09T16:30:39.593Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:30:39.593Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:30:39.593Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:30:39.593Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:30:39.593Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb +[2024-05-09T16:30:39.593Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-05-09T16:30:39.593Z] + filename=subset-user-input.ipynb +[2024-05-09T16:30:39.593Z] + echo subset-user-input.ipynb +[2024-05-09T16:30:39.593Z] + sed s/.ipynb$// +[2024-05-09T16:30:39.593Z] + filename=subset-user-input +[2024-05-09T16:30:39.593Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-05-09T16:30:39.593Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-05-09T16:30:39.594Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-05-09T16:30:39.594Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:30:39.594Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:30:39.594Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:30:39.594Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:30:57.648Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb +[2024-05-09T16:30:57.649Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-05-09T16:30:57.649Z] + filename=subsetting.ipynb +[2024-05-09T16:30:57.649Z] + echo subsetting.ipynb +[2024-05-09T16:30:57.649Z] + sed s/.ipynb$// +[2024-05-09T16:30:57.649Z] + filename=subsetting +[2024-05-09T16:30:57.649Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-05-09T16:30:57.649Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-05-09T16:30:57.649Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook +[2024-05-09T16:30:57.906Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:30:57.906Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:30:57.906Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:30:57.906Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:06.018Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb +[2024-05-09T16:31:06.018Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-09T16:31:06.018Z] + filename=dap_subset.ipynb +[2024-05-09T16:31:06.018Z] + echo dap_subset.ipynb +[2024-05-09T16:31:06.018Z] + sed s/.ipynb$// +[2024-05-09T16:31:06.018Z] + filename=dap_subset +[2024-05-09T16:31:06.018Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-05-09T16:31:06.018Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-09T16:31:07.907Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-05-09T16:31:08.838Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:08.838Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:08.838Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:08.838Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:18.792Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb +[2024-05-09T16:31:18.792Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-09T16:31:18.792Z] + filename=finch-usage.ipynb +[2024-05-09T16:31:18.792Z] + sed s/.ipynb$// +[2024-05-09T16:31:18.792Z] + echo finch-usage.ipynb +[2024-05-09T16:31:18.792Z] + filename=finch-usage +[2024-05-09T16:31:18.792Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-05-09T16:31:18.792Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-09T16:31:19.362Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-05-09T16:31:20.301Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:20.301Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:20.301Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:20.301Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:30.273Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb +[2024-05-09T16:31:30.273Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:30.273Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:30.273Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:30.273Z] + sed s/.ipynb$// +[2024-05-09T16:31:30.273Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-05-09T16:31:30.273Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-05-09T16:31:30.273Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:31.200Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-05-09T16:31:33.719Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:33.719Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:33.719Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:33.719Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:37.888Z] [NbConvertApp] Writing 173042 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-05-09T16:31:37.889Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:37.889Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:37.889Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:37.889Z] + sed s/.ipynb$// +[2024-05-09T16:31:37.889Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-05-09T16:31:37.889Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-05-09T16:31:37.889Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:39.782Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-05-09T16:31:40.709Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:40.709Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:40.709Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:40.709Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:58.769Z] [NbConvertApp] Writing 1481193 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-05-09T16:31:58.769Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:58.769Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:58.769Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:58.769Z] + sed s/.ipynb$// +[2024-05-09T16:31:58.769Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-05-09T16:31:58.769Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-05-09T16:31:58.769Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:59.331Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-05-09T16:39:51.286Z] [NbConvertApp] Writing 556632 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-05-09T16:39:51.286Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] + sed s/.ipynb$// +[2024-05-09T16:39:51.286Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-05-09T16:39:51.286Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-05-09T16:39:51.286Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-05-09T16:40:01.263Z] [NbConvertApp] Writing 785214 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-05-09T16:40:01.263Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:01.263Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:01.263Z] + sed s/.ipynb$// +[2024-05-09T16:40:01.263Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:01.263Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-05-09T16:40:01.263Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-05-09T16:40:01.263Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:03.177Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-05-09T16:41:10.885Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-05-09T16:41:10.885Z] + basename notebooks/hummingbird.ipynb +[2024-05-09T16:41:10.885Z] + filename=hummingbird.ipynb +[2024-05-09T16:41:10.885Z] + echo hummingbird.ipynb +[2024-05-09T16:41:10.885Z] + sed s/.ipynb$// +[2024-05-09T16:41:10.885Z] + filename=hummingbird +[2024-05-09T16:41:10.885Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-05-09T16:41:10.885Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-05-09T16:41:10.885Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-05-09T16:41:10.885Z] [NbConvertApp] Writing 15863 bytes to buildout/hummingbird.output.ipynb +[2024-05-09T16:41:10.885Z] + basename notebooks/stress-tests.ipynb +[2024-05-09T16:41:10.885Z] + filename=stress-tests.ipynb +[2024-05-09T16:41:10.885Z] + echo stress-tests.ipynb +[2024-05-09T16:41:10.885Z] + sed s/.ipynb$// +[2024-05-09T16:41:10.885Z] + filename=stress-tests +[2024-05-09T16:41:10.885Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-05-09T16:41:10.885Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-05-09T16:41:10.885Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-05-09T16:41:10.885Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:41:10.885Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:41:10.885Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:41:10.885Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:43:02.304Z] [NbConvertApp] Writing 428997 bytes to buildout/stress-tests.output.ipynb +[2024-05-09T16:43:02.304Z] + exit 0 +[2024-05-09T16:43:02.304Z] + EXIT_CODE=0 +[2024-05-09T16:43:02.304Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-09T16:43:02.304Z] + mkdir -p buildout/env-dump +[2024-05-09T16:43:02.304Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-09T16:43:02.304Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-09T16:43:02.304Z] + conda env export -n birdy +[2024-05-09T16:43:20.353Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T16:43:20.353Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T16:43:20.353Z] + conda list -n birdy --explicit +[2024-05-09T16:43:30.306Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T16:43:30.306Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T16:43:30.306Z] + pip freeze +[2024-05-09T16:43:30.306Z] + exit 0 +[Pipeline] } +[Pipeline] // withCredentials +[Pipeline] } +[Pipeline] // script +[Pipeline] } +[Pipeline] // stage +[Pipeline] stage +[Pipeline] { (Declarative: Post Actions) +[Pipeline] archiveArtifacts +[2024-05-09T16:43:31.494Z] Archiving artifacts +[2024-05-09T16:43:31.516Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:31.822Z] Archiving artifacts +[2024-05-09T16:43:32.707Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:33.431Z] Archiving artifacts +[2024-05-09T16:43:33.451Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:33.532Z] Archiving artifacts +[2024-05-09T16:43:33.760Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:34.034Z] Archiving artifacts +[2024-05-09T16:43:34.184Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:34.370Z] Archiving artifacts +[2024-05-09T16:43:34.620Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:36.142Z] Archiving artifacts +[2024-05-09T16:43:36.221Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:36.426Z] Archiving artifacts +[2024-05-09T16:43:36.537Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:36.811Z] Archiving artifacts +[2024-05-09T16:43:37.399Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:37.802Z] Archiving artifacts +[2024-05-09T16:43:38.908Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T16:43:40.966Z] Archiving artifacts +[2024-05-09T16:43:41.041Z] Recording fingerprints +[Pipeline] } +[Pipeline] // stage +[Pipeline] } +[Pipeline] // timeout +[Pipeline] } +[Pipeline] // timestamps +[Pipeline] } +[Pipeline] // ansiColor +[Pipeline] } +$ docker stop --time=1 e7df9406a5158c78f2d19b6e5ddb3af8f42f0a02b0d40ca6aa64da61603d97e6 +$ docker rm -f e7df9406a5158c78f2d19b6e5ddb3af8f42f0a02b0d40ca6aa64da61603d97e6 +[Pipeline] // withDockerContainer +[Pipeline] } +[Pipeline] // withEnv +[Pipeline] } +[Pipeline] // node +[Pipeline] End of Pipeline +Finished: SUCCESS diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt new file mode 100644 index 0000000..8d0a7d4 --- /dev/null +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -0,0 +1,955 @@ +Started by user Long Vu +Replayed #5 + > git rev-parse --is-inside-work-tree # timeout=10 +Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching origin... +Fetching upstream changes from origin + > git --version # timeout=10 + > git config --get remote.origin.url # timeout=10 + > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 +Seen branch in repository origin/current-production-version +Seen branch in repository origin/devel-new-extensions +Seen branch in repository origin/extended_tests +Seen branch in repository origin/master +Seen branch in repository origin/new-build-no-jupyter-dash +Seen branch in repository origin/new-build-no-ravenpy +Seen branch in repository origin/new-docker-build +Seen branch in repository origin/new-docker-build-with-jenkins-override +Seen branch in repository origin/override-jenkins-config +Seen branch in repository origin/test-dockerhub-build +Seen branch in repository origin/twitcher_perf_test_notebook +Seen 11 remote branches +Obtained Jenkinsfile from ca65e709adbfc074ee946c260be793fdca08d1b9 +Running in Durability level: MAX_SURVIVABILITY +[Pipeline] Start of Pipeline +[Pipeline] node +Running on linux1 in /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Declarative: Checkout SCM) +[Pipeline] checkout +No credentials specified +Fetching changes from the remote Git repository +Fetching without tags +Checking out Revision ca65e709adbfc074ee946c260be793fdca08d1b9 (new-docker-build-with-jenkins-override) +Commit message: "Merge remote-tracking branch 'origin/new-docker-build' into new-docker-build-with-jenkins-override" + > git rev-parse --is-inside-work-tree # timeout=10 + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git --version # timeout=10 + > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 + > git config core.sparsecheckout # timeout=10 + > git checkout -f ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 + > git rev-list --no-walk ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 +[Pipeline] } +[Pipeline] // stage +[Pipeline] withEnv +[Pipeline] { +[Pipeline] isUnix +[Pipeline] sh ++ docker inspect -f . pavics/workflow-tests:py311-240506-update240508 +. +[Pipeline] withDockerContainer +linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/cker-build-with-jenkins-override --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506-update240508 cat +$ docker top a3275acd14887a1929af7f5e4b800188281d27befd51e92b8ec9f8b8dd84d2df -eo pid,comm +[Pipeline] { +[Pipeline] ansiColor +[Pipeline] { +[Pipeline] timestamps +[Pipeline] { +[Pipeline] timeout +[2024-05-09T00:02:04.036Z] Timeout set to expire in 2 hr 0 min +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Run tests) +[Pipeline] script +[Pipeline] { +[Pipeline] withCredentials +[2024-05-09T00:02:04.778Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[Pipeline] { +[Pipeline] sh +[2024-05-09T00:02:05.072Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-09T00:02:05.072Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T00:02:05.072Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T00:02:05.072Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T00:02:05.072Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T00:02:05.072Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T00:02:05.072Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T00:02:05.072Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T00:02:05.072Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T00:02:05.072Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T00:02:05.072Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T00:02:05.072Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T00:02:05.072Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T00:02:05.072Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T00:02:05.072Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T00:02:05.072Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T00:02:05.072Z] + [ -n https://gist.githubusercontent.com/tlvu/813a1bcd325d753664c09526e4a5b759/raw/0728b32c6c8521fd9cc4b149919bb872563c3caa/jenkins-params-raven-nb-only.include.sh ] +[2024-05-09T00:02:05.072Z] + TMP_CONF_OVERRIDE=/tmp/jenkins_conf_override +[2024-05-09T00:02:05.072Z] + rm -vf /tmp/jenkins_conf_override +[2024-05-09T00:02:05.072Z] removed '/tmp/jenkins_conf_override' +[2024-05-09T00:02:05.072Z] + curl --silent https://gist.githubusercontent.com/tlvu/813a1bcd325d753664c09526e4a5b759/raw/0728b32c6c8521fd9cc4b149919bb872563c3caa/jenkins-params-raven-nb-only.include.sh +[2024-05-09T00:02:05.072Z] + tee /tmp/jenkins_conf_override +[2024-05-09T00:02:05.328Z] #!/bin/sh +[2024-05-09T00:02:05.328Z] # Sample Jenkins params override script to only run Raven notebooks +[2024-05-09T00:02:05.328Z] # with the proper --nbval-lax switch. +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] TEST_PAVICS_SDI_REPO="false" +[2024-05-09T00:02:05.328Z] TEST_FINCH_REPO="false" +[2024-05-09T00:02:05.328Z] TEST_PAVICS_LANDING_REPO="false" +[2024-05-09T00:02:05.328Z] TEST_LOCAL_NOTEBOOKS="false" +[2024-05-09T00:02:05.328Z] TEST_RAVEN_REPO="true" +[2024-05-09T00:02:05.328Z] TEST_RAVENPY_REPO="true" +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] PYTEST_EXTRA_OPTS="$PYTEST_EXTRA_OPTS --nbval-lax" +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] SAVE_RESULTING_NOTEBOOK_TIMEOUT="600" +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] # Set different test branch if required. +[2024-05-09T00:02:05.328Z] #RAVEN_BRANCH="" +[2024-05-09T00:02:05.328Z] RAVENPY_BRANCH="fixnbs_pavics_betaimage" +[2024-05-09T00:02:05.328Z] + . /tmp/jenkins_conf_override +[2024-05-09T00:02:05.328Z] + TEST_PAVICS_SDI_REPO=false +[2024-05-09T00:02:05.328Z] + TEST_FINCH_REPO=false +[2024-05-09T00:02:05.328Z] + TEST_PAVICS_LANDING_REPO=false +[2024-05-09T00:02:05.328Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-05-09T00:02:05.328Z] + TEST_RAVEN_REPO=true +[2024-05-09T00:02:05.328Z] + TEST_RAVENPY_REPO=true +[2024-05-09T00:02:05.328Z] + PYTEST_EXTRA_OPTS=--dist=loadscope --numprocesses=0 --nbval-lax +[2024-05-09T00:02:05.328Z] + SAVE_RESULTING_NOTEBOOK_TIMEOUT=600 +[2024-05-09T00:02:05.328Z] + RAVENPY_BRANCH=fixnbs_pavics_betaimage +[2024-05-09T00:02:05.328Z] + git clean -fdx +[2024-05-09T00:02:05.328Z] Removing .pytest_cache/ +[2024-05-09T00:02:05.328Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha/ +[2024-05-09T00:02:05.328Z] Removing RavenPy-master/ +[2024-05-09T00:02:05.328Z] Removing __pycache__/ +[2024-05-09T00:02:05.328Z] Removing buildout/ +[2024-05-09T00:02:05.328Z] Removing esgf-compute-api-devel/ +[2024-05-09T00:02:05.328Z] Removing finch-master/ +[2024-05-09T00:02:05.328Z] Removing pavics-sdi-fix_nbs_jupyter_alpha/ +[2024-05-09T00:02:05.328Z] Removing raven-main/ +[2024-05-09T00:02:05.328Z] + ./downloadrepos +[2024-05-09T00:02:05.328Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T00:02:05.328Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T00:02:05.328Z] TEST_FINCH_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T00:02:05.328Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T00:02:05.328Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T00:02:05.328Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T00:02:05.328Z] TEST_RAVEN_REPO has been set to 'true' +[2024-05-09T00:02:05.328Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T00:02:05.328Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T00:02:05.328Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-05-09T00:02:05.328Z] RAVENPY_BRANCH has been set to 'fixnbs_pavics_betaimage' +[2024-05-09T00:02:05.328Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T00:02:05.328Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T00:02:05.328Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T00:02:05.328Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-05-09T00:02:05.328Z] + rm -rf pavics-sdi-* +[2024-05-09T00:02:05.328Z] + ls +[2024-05-09T00:02:05.328Z] + grep pavics-sdi +[2024-05-09T00:02:05.328Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-05-09T00:02:05.328Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-09T00:02:05.328Z] + shift +[2024-05-09T00:02:05.328Z] + branch=master +[2024-05-09T00:02:05.328Z] + shift +[2024-05-09T00:02:05.328Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-05-09T00:02:05.328Z] + tar xz +[2024-05-09T00:02:09.495Z] + ls +[2024-05-09T00:02:09.495Z] + grep pavics-sdi +[2024-05-09T00:02:09.495Z] pavics-sdi-master +[2024-05-09T00:02:09.495Z] + set +x +[2024-05-09T00:02:09.495Z] + rm -rf finch-* +[2024-05-09T00:02:09.495Z] + ls +[2024-05-09T00:02:09.495Z] + grep finch +[2024-05-09T00:02:09.495Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-09T00:02:09.495Z] + github_repo=https://github.com/bird-house/finch +[2024-05-09T00:02:09.495Z] + shift +[2024-05-09T00:02:09.495Z] + branch=master +[2024-05-09T00:02:09.495Z] + shift +[2024-05-09T00:02:09.495Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-09T00:02:09.495Z] + tar xz +[2024-05-09T00:02:10.862Z] + ls +[2024-05-09T00:02:10.862Z] + grep finch +[2024-05-09T00:02:10.862Z] finch-master +[2024-05-09T00:02:10.862Z] + set +x +[2024-05-09T00:02:10.862Z] + rm -rf PAVICS-landing-* +[2024-05-09T00:02:10.862Z] + ls +[2024-05-09T00:02:10.862Z] + grep PAVICS-landing +[2024-05-09T00:02:10.862Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-05-09T00:02:10.862Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-09T00:02:10.862Z] + shift +[2024-05-09T00:02:10.862Z] + branch=master +[2024-05-09T00:02:10.862Z] + shift +[2024-05-09T00:02:10.862Z] + + wget --quiet --output-document -tar https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz xz +[2024-05-09T00:02:10.862Z] +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep PAVICS-landing +[2024-05-09T00:02:23.028Z] PAVICS-landing-master +[2024-05-09T00:02:23.028Z] + set +x +[2024-05-09T00:02:23.028Z] + rm -rf raven-* +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep raven +[2024-05-09T00:02:23.028Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-09T00:02:23.028Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + branch=main +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-09T00:02:23.028Z] + tar xz +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep raven +[2024-05-09T00:02:23.028Z] raven-main +[2024-05-09T00:02:23.028Z] + set +x +[2024-05-09T00:02:23.028Z] + rm -rf RavenPy-* +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep RavenPy +[2024-05-09T00:02:23.028Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy fixnbs_pavics_betaimage +[2024-05-09T00:02:23.028Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + branch=fixnbs_pavics_betaimage +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/fixnbs_pavics_betaimage.tar.gz +[2024-05-09T00:02:23.028Z] + tar xz +[2024-05-09T00:02:24.917Z] + + ls +[2024-05-09T00:02:24.917Z] grep RavenPy +[2024-05-09T00:02:24.917Z] RavenPy-fixnbs_pavics_betaimage +[2024-05-09T00:02:24.917Z] + set +x +[2024-05-09T00:02:24.917Z] + rm -rf esgf-compute-api-* +[2024-05-09T00:02:24.917Z] + ls +[2024-05-09T00:02:24.917Z] + grep esgf-compute-api +[2024-05-09T00:02:24.917Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-09T00:02:24.917Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-09T00:02:24.917Z] + shift +[2024-05-09T00:02:24.917Z] + branch=devel +[2024-05-09T00:02:24.917Z] + shift +[2024-05-09T00:02:24.917Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-09T00:02:24.917Z] + tar xz +[2024-05-09T00:02:25.844Z] + ls +[2024-05-09T00:02:25.844Z] + grep esgf-compute-api +[2024-05-09T00:02:25.844Z] esgf-compute-api-devel +[2024-05-09T00:02:25.844Z] + set +x +[2024-05-09T00:02:25.844Z] + echo master +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_SDI_BRANCH=master +[2024-05-09T00:02:25.844Z] + echo Ouranosinc/pavics-sdi +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-09T00:02:25.844Z] + echo master +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + FINCH_BRANCH=master +[2024-05-09T00:02:25.844Z] + echo bird-house/finch +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + FINCH_REPO_NAME=finch +[2024-05-09T00:02:25.844Z] + echo master +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_LANDING_BRANCH=master +[2024-05-09T00:02:25.844Z] + echo Ouranosinc/PAVICS-landing +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-09T00:02:25.844Z] + echo main +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + RAVEN_BRANCH=main +[2024-05-09T00:02:25.844Z] + echo Ouranosinc/raven +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + RAVEN_REPO_NAME=raven +[2024-05-09T00:02:25.844Z] + echo fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + RAVENPY_BRANCH=fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + echo CSHS-CWRA/RavenPy +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-09T00:02:25.844Z] + echo devel +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-09T00:02:25.844Z] + echo ESGF/esgf-compute-api +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-09T00:02:25.844Z] + echo pavics-sdi-master +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-05-09T00:02:25.844Z] + echo finch-master +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + FINCH_DIR=finch-master +[2024-05-09T00:02:25.844Z] + echo PAVICS-landing-master +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-05-09T00:02:25.844Z] + echo raven-main +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + RAVEN_DIR=raven-main +[2024-05-09T00:02:25.844Z] + echo RavenPy-fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + RAVENPY_DIR=RavenPy-fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + echo esgf-compute-api-devel +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-09T00:02:25.844Z] + echo true +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + VERIFY_SSL=true +[2024-05-09T00:02:25.844Z] + [ xtrue = xfalse ] +[2024-05-09T00:02:25.844Z] + rm -v finch-master/setup.cfg +[2024-05-09T00:02:25.844Z] removed 'finch-master/setup.cfg' +[2024-05-09T00:02:25.844Z] + rm -v raven-main/setup.cfg +[2024-05-09T00:02:25.844Z] removed 'raven-main/setup.cfg' +[2024-05-09T00:02:25.844Z] + rm -v raven-main/pyproject.toml +[2024-05-09T00:02:25.844Z] removed 'raven-main/pyproject.toml' +[2024-05-09T00:02:25.844Z] + rm -v RavenPy-fixnbs_pavics_betaimage/setup.cfg +[2024-05-09T00:02:25.844Z] removed 'RavenPy-fixnbs_pavics_betaimage/setup.cfg' +[2024-05-09T00:02:25.844Z] + rm -v RavenPy-fixnbs_pavics_betaimage/tox.ini +[2024-05-09T00:02:25.844Z] removed 'RavenPy-fixnbs_pavics_betaimage/tox.ini' +[2024-05-09T00:02:25.844Z] + rm -v RavenPy-fixnbs_pavics_betaimage/pyproject.toml +[2024-05-09T00:02:25.844Z] removed 'RavenPy-fixnbs_pavics_betaimage/pyproject.toml' +[2024-05-09T00:02:25.844Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-09T00:02:25.844Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-09T00:02:25.844Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-09T00:02:25.844Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_MAGPIE_AUTH=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_PAVICS_SDI_REPO=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_FINCH_REPO=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_PAVICS_LANDING_REPO=false +[2024-05-09T00:02:25.844Z] + echo true +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_RAVEN_REPO=true +[2024-05-09T00:02:25.844Z] + echo true +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_RAVENPY_REPO=true +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xtrue = xtrue ] +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-05-09T00:02:25.844Z] + [ xtrue = xtrue ] +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb +[2024-05-09T00:02:25.844Z] + [ -n ] +[2024-05-09T00:02:25.844Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-09T00:02:25.844Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-09T00:02:25.844Z] Will run notebooks against pavics.ouranos.ca +[2024-05-09T00:02:25.844Z] + [ -z ] +[2024-05-09T00:02:25.845Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:02:26.102Z] + git diff +[2024-05-09T00:02:26.102Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-09T00:02:26.102Z] + [ -n ] +[2024-05-09T00:02:26.103Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --nbval-sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-05-09T00:02:29.380Z] ============================= test session starts ============================== +[2024-05-09T00:02:29.380Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-09T00:02:29.380Z] rootdir: /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[2024-05-09T00:02:29.380Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-09T00:02:29.380Z] collected 243 items +[2024-05-09T00:02:29.380Z] +[2024-05-09T00:02:39.384Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-05-09T00:02:41.900Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-05-09T00:02:54.270Z] ...... [ 6%] +[2024-05-09T00:02:56.166Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb . [ 6%] +[2024-05-09T00:02:56.166Z] ..... [ 9%] +[2024-05-09T00:02:58.111Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb . [ 9%] +[2024-05-09T00:03:08.311Z] ....... [ 12%] +[2024-05-09T00:03:13.571Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-05-09T00:03:22.368Z] .............. [ 18%] +[2024-05-09T00:03:30.461Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb . [ 18%] +[2024-05-09T00:05:04.928Z] .......... [ 23%] +[2024-05-09T00:05:07.448Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb . [ 23%] +[2024-05-09T00:05:19.502Z] ................... [ 31%] +[2024-05-09T00:05:23.673Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb . [ 31%] +[2024-05-09T00:05:36.320Z] ............ [ 36%] +[2024-05-09T00:05:41.597Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb . [ 37%] +[2024-05-09T00:05:46.142Z] ..... [ 39%] +[2024-05-09T00:05:51.455Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-05-09T00:05:58.190Z] ..... [ 41%] +[2024-05-09T00:05:59.559Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-05-09T00:11:21.529Z] ................. [ 48%] +[2024-05-09T00:11:28.101Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-05-09T00:11:35.606Z] .... [ 51%] +[2024-05-09T00:11:36.981Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb . [ 51%] +[2024-05-09T00:12:50.246Z] ....... [ 54%] +[2024-05-09T00:12:55.526Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb . [ 54%] +[2024-05-09T00:13:31.411Z] ....... [ 57%] +[2024-05-09T00:13:41.403Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 58%] +[2024-05-09T00:13:50.248Z] ....... [ 60%] +[2024-05-09T00:13:51.649Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb . [ 61%] +[2024-05-09T00:14:21.040Z] ....... [ 64%] +[2024-05-09T00:14:31.067Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-05-09T00:14:54.530Z] ....... [ 67%] +[2024-05-09T00:14:57.817Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-05-09T00:15:26.926Z] ....... [ 70%] +[2024-05-09T00:15:28.829Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb F [ 71%] +[2024-05-09T00:15:28.829Z] FFF [ 72%] +[2024-05-09T00:15:36.945Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb . [ 72%] +[2024-05-09T00:15:47.270Z] ..... [ 74%] +[2024-05-09T00:15:48.212Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb . [ 75%] +[2024-05-09T00:16:34.909Z] .. [ 76%] +[2024-05-09T00:16:35.474Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb . [ 76%] +[2024-05-09T00:16:59.922Z] ...... [ 79%] +[2024-05-09T00:16:59.922Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-05-09T00:17:13.583Z] ............. [ 84%] +[2024-05-09T00:17:18.962Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb . [ 85%] +[2024-05-09T00:17:31.149Z] .... [ 86%] +[2024-05-09T00:17:37.693Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb . [ 87%] +[2024-05-09T00:17:38.883Z] .......... [ 91%] +[2024-05-09T00:17:51.071Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-05-09T00:22:57.433Z] .................... [100%] +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] =================================== FAILURES =================================== +[2024-05-09T00:22:57.433Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 _ +[2024-05-09T00:22:57.433Z] Notebook cell execution failed +[2024-05-09T00:22:57.433Z] Cell 0: Cell execution caused an exception +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] Input: +[2024-05-09T00:22:57.433Z] import os +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] from hsclient import HydroShare, Token +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] # Authentication method using username and password +[2024-05-09T00:22:57.433Z] """ +[2024-05-09T00:22:57.433Z] username = 'XXXXX' +[2024-05-09T00:22:57.433Z] password = 'XXXXX' +[2024-05-09T00:22:57.433Z] hs = HydroShare(username=username, password=password) +[2024-05-09T00:22:57.433Z] """ +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-05-09T00:22:57.433Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] token = Token(access_token=access_token, token_type="bearer") +[2024-05-09T00:22:57.433Z] hs = HydroShare(client_id=client_id, token=token) +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] Traceback: +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] --------------------------------------------------------------------------- +[2024-05-09T00:22:57.433Z] ValidationError Traceback (most recent call last) +[2024-05-09T00:22:57.433Z] Cell In[1], line 15 +[2024-05-09T00:22:57.433Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-05-09T00:22:57.433Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-05-09T00:22:57.433Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-05-09T00:22:57.433Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/pydantic/main.py:176, in BaseModel.__init__(self, **data) +[2024-05-09T00:22:57.433Z]  174 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-05-09T00:22:57.433Z]  175 __tracebackhide__ = True +[2024-05-09T00:22:57.433Z] --> 176 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.434Z] ValidationError: 4 validation errors for Token +[2024-05-09T00:22:57.434Z] scope +[2024-05-09T00:22:57.434Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-05-09T00:22:57.434Z]  2 for r in results: +[2024-05-09T00:22:57.434Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] NameError: name 'hs' is not defined +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 _ +[2024-05-09T00:22:57.434Z] Notebook cell execution failed +[2024-05-09T00:22:57.434Z] Cell 2: Cell execution caused an exception +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Input: +[2024-05-09T00:22:57.434Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-05-09T00:22:57.434Z] res.files() +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Traceback: +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] --------------------------------------------------------------------------- +[2024-05-09T00:22:57.434Z] NameError Traceback (most recent call last) +[2024-05-09T00:22:57.434Z] Cell In[1], line 1 +[2024-05-09T00:22:57.434Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-05-09T00:22:57.434Z]  2 res.files() +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] NameError: name 'hs' is not defined +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 _ +[2024-05-09T00:22:57.434Z] Notebook cell execution failed +[2024-05-09T00:22:57.434Z] Cell 3: Cell execution caused an exception +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Input: +[2024-05-09T00:22:57.434Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Traceback: +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] --------------------------------------------------------------------------- +[2024-05-09T00:22:57.434Z] NameError Traceback (most recent call last) +[2024-05-09T00:22:57.434Z] Cell In[1], line 1 +[2024-05-09T00:22:57.434Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] NameError: name 'res' is not defined +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] =========================== short test summary info ============================ +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-05-09T00:22:57.434Z] ================== 4 failed, 239 passed in 1228.80s (0:20:28) ================== +[2024-05-09T00:22:57.690Z] + EXIT_CODE=1 +[2024-05-09T00:22:57.690Z] + echo true +[2024-05-09T00:22:57.690Z] + tr [:upper:] [:lower:] +[2024-05-09T00:22:57.690Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-09T00:22:57.690Z] + [ xtrue = xtrue ] +[2024-05-09T00:22:57.690Z] + mkdir -p buildout +[2024-05-09T00:22:57.690Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-05-09T00:22:57.690Z] + filename=Region_selection.ipynb +[2024-05-09T00:22:57.690Z] + echo Region_selection.ipynb +[2024-05-09T00:22:57.690Z] + sed s/.ipynb$// +[2024-05-09T00:22:57.690Z] + filename=Region_selection +[2024-05-09T00:22:57.690Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-05-09T00:22:57.690Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-05-09T00:22:59.584Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-05-09T00:23:00.513Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:00.513Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:00.513Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:00.513Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:12.733Z] [NbConvertApp] Writing 107223 bytes to buildout/Region_selection.output.ipynb +[2024-05-09T00:23:12.733Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:12.733Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:12.733Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:12.733Z] + sed s/.ipynb$// +[2024-05-09T00:23:12.733Z] + filename=Subset_climate_data_over_watershed +[2024-05-09T00:23:12.733Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-05-09T00:23:12.733Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:14.629Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-05-09T00:23:15.556Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:15.556Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:15.556Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:15.556Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:33.760Z] [NbConvertApp] Writing 97069 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-05-09T00:23:33.761Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:33.761Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:33.761Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:33.761Z] + sed s/.ipynb$// +[2024-05-09T00:23:33.761Z] + filename=00_Introduction_to_JupyterLab +[2024-05-09T00:23:33.761Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-05-09T00:23:33.761Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:34.017Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-05-09T00:23:34.951Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:34.951Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:34.951Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:34.951Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:36.839Z] [NbConvertApp] Writing 13178 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-05-09T00:23:36.839Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:36.839Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:36.839Z] + sed s/.ipynb$// +[2024-05-09T00:23:36.839Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:36.839Z] + filename=01_Getting_watershed_boundaries +[2024-05-09T00:23:36.839Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-05-09T00:23:36.839Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:38.732Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-05-09T00:23:39.661Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:39.661Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:39.661Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:39.661Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:51.855Z] [NbConvertApp] Writing 109426 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-05-09T00:23:51.855Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:51.855Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:51.855Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:51.855Z] + sed s/.ipynb$// +[2024-05-09T00:23:51.855Z] + filename=02_Extract_geographical_watershed_properties +[2024-05-09T00:23:51.855Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-05-09T00:23:51.855Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:53.219Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-05-09T00:23:54.154Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:54.154Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:54.154Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:54.154Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:24:09.006Z] [NbConvertApp] Writing 279631 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-05-09T00:24:09.282Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:09.282Z] + filename=03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:09.282Z] + echo 03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:09.282Z] + sed s/.ipynb$// +[2024-05-09T00:24:09.282Z] + filename=03_Extracting_forcing_data +[2024-05-09T00:24:09.282Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-05-09T00:24:09.282Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:11.200Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-05-09T00:24:12.138Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:24:12.138Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:24:12.138Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:24:12.138Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:03.532Z] [NbConvertApp] Writing 107673 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-05-09T00:26:03.532Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.532Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.532Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.532Z] + sed s/.ipynb$// +[2024-05-09T00:26:03.532Z] + filename=04_Emulating_hydrological_models +[2024-05-09T00:26:03.532Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-05-09T00:26:03.533Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.533Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-05-09T00:26:04.906Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:04.906Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:04.906Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:04.906Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:22.979Z] [NbConvertApp] Writing 388626 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-05-09T00:26:22.979Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] + sed s/.ipynb$// +[2024-05-09T00:26:22.979Z] + filename=05_Advanced_RavenPy_configuration +[2024-05-09T00:26:22.979Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-05-09T00:26:22.979Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-05-09T00:26:23.236Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:23.236Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:23.236Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:23.236Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:41.343Z] [NbConvertApp] Writing 313551 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-05-09T00:26:41.343Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb +[2024-05-09T00:26:41.343Z] + filename=06_Raven_calibration.ipynb +[2024-05-09T00:26:41.343Z] + echo 06_Raven_calibration.ipynb +[2024-05-09T00:26:41.343Z] + sed s/.ipynb$// +[2024-05-09T00:26:41.343Z] + filename=06_Raven_calibration +[2024-05-09T00:26:41.343Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-05-09T00:26:41.343Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb +[2024-05-09T00:26:43.242Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-05-09T00:26:44.177Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:44.177Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:44.177Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:44.177Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:54.133Z] [NbConvertApp] Writing 16331 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-05-09T00:26:54.134Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:54.134Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:54.134Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:54.134Z] + sed s/.ipynb$// +[2024-05-09T00:26:54.134Z] + filename=07_Making_and_using_hotstart_files +[2024-05-09T00:26:54.134Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-05-09T00:26:54.134Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:56.028Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-05-09T00:26:56.964Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:56.964Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:56.964Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:56.964Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:27:09.136Z] [NbConvertApp] Writing 205512 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-05-09T00:27:09.136Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.136Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.136Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.136Z] + sed s/.ipynb$// +[2024-05-09T00:27:09.136Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-05-09T00:27:09.136Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-05-09T00:27:09.136Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.699Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-05-09T00:27:10.638Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:27:10.639Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:27:10.639Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:27:10.639Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:31:32.206Z] [NbConvertApp] Writing 249082 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-05-09T00:31:32.206Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] + sed s/.ipynb$// +[2024-05-09T00:31:32.206Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-05-09T00:31:32.206Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-05-09T00:31:32.206Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-05-09T00:31:32.206Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:31:32.206Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:31:32.206Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:31:32.206Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:31:42.170Z] [NbConvertApp] Writing 128174 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-05-09T00:31:42.170Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb +[2024-05-09T00:31:42.170Z] + filename=10_Data_assimilation.ipynb +[2024-05-09T00:31:42.170Z] + echo 10_Data_assimilation.ipynb +[2024-05-09T00:31:42.170Z] + sed s/.ipynb$// +[2024-05-09T00:31:42.170Z] + filename=10_Data_assimilation +[2024-05-09T00:31:42.170Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-05-09T00:31:42.170Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb +[2024-05-09T00:31:42.732Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-05-09T00:31:43.659Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:31:43.659Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:31:43.659Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:31:43.659Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:32:51.320Z] [NbConvertApp] Writing 432765 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-05-09T00:32:51.321Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:51.321Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:51.321Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:51.321Z] + sed s/.ipynb$// +[2024-05-09T00:32:51.321Z] + filename=11_Climatological_ESP_forecasting +[2024-05-09T00:32:51.321Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-05-09T00:32:51.321Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:53.304Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-05-09T00:32:53.869Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:32:53.869Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:32:53.870Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:32:53.870Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:33:40.528Z] [NbConvertApp] Writing 176184 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-05-09T00:33:40.528Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] + sed s/.ipynb$// +[2024-05-09T00:33:40.528Z] + filename=12_Performing_hindcasting_experiments +[2024-05-09T00:33:40.528Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-05-09T00:33:40.528Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-05-09T00:33:40.528Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:33:40.528Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:33:40.528Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:33:40.528Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:33:58.596Z] [NbConvertApp] Writing 150539 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-05-09T00:33:58.596Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:58.596Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:58.596Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:58.596Z] + sed s/.ipynb$// +[2024-05-09T00:33:58.596Z] + filename=Assess_probabilistic_flood_risk +[2024-05-09T00:33:58.596Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-05-09T00:33:58.596Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:59.523Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-05-09T00:34:00.460Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:34:00.460Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:34:00.460Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:34:00.460Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:34:27.332Z] [NbConvertApp] Writing 163111 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-05-09T00:34:27.332Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:27.332Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:27.332Z] + sed s/.ipynb$// +[2024-05-09T00:34:27.332Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:27.332Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-05-09T00:34:27.332Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-05-09T00:34:27.332Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:28.260Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-05-09T00:34:29.627Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:34:29.627Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:34:29.627Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:34:29.627Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:35:01.687Z] [NbConvertApp] Writing 314030 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-05-09T00:35:01.687Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] + echo Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] + sed s/.ipynb$// +[2024-05-09T00:35:01.687Z] + filename=Distributed_hydrological_modelling +[2024-05-09T00:35:01.687Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-05-09T00:35:01.687Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-05-09T00:35:02.688Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:35:02.688Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:35:02.688Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:35:02.688Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:35:41.419Z] [NbConvertApp] Writing 102750 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-05-09T00:35:41.419Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] + filename=HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] + echo HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] + sed s/.ipynb$// +[2024-05-09T00:35:41.419Z] + filename=HydroShare_integration +[2024-05-09T00:35:41.419Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-05-09T00:35:41.419Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-05-09T00:35:41.419Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:35:41.419Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:35:41.419Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:35:41.419Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:35:41.419Z] [NbConvertApp] Writing 11583 bytes to buildout/HydroShare_integration.output.ipynb +[2024-05-09T00:35:41.675Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:41.675Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:41.675Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:41.675Z] + sed s/.ipynb$// +[2024-05-09T00:35:41.675Z] + filename=Hydrological_realtime_forecasting +[2024-05-09T00:35:41.675Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-05-09T00:35:41.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:43.583Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-05-09T00:35:44.524Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:35:44.524Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:35:44.524Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:35:44.524Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:36:06.454Z] [NbConvertApp] Writing 154578 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-05-09T00:36:06.454Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] + echo Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] + sed s/.ipynb$// +[2024-05-09T00:36:06.454Z] + filename=Managing_Jupyter_Environments +[2024-05-09T00:36:06.454Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-05-09T00:36:06.454Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-05-09T00:36:07.420Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:36:07.420Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:36:07.420Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:36:07.420Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:36:17.450Z] [NbConvertApp] Writing 8669 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-05-09T00:36:17.450Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb +[2024-05-09T00:36:17.450Z] + filename=Perform_Regionalization.ipynb +[2024-05-09T00:36:17.450Z] + echo Perform_Regionalization.ipynb +[2024-05-09T00:36:17.450Z] + sed s/.ipynb$// +[2024-05-09T00:36:17.450Z] + filename=Perform_Regionalization +[2024-05-09T00:36:17.450Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-05-09T00:36:17.450Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb +[2024-05-09T00:36:18.866Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-05-09T00:36:19.820Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:36:19.820Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:36:19.820Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:36:19.820Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:36:52.013Z] [NbConvertApp] Writing 120973 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-05-09T00:36:52.013Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.013Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.013Z] + + sed s/.ipynb$// +[2024-05-09T00:36:52.013Z] echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.013Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-05-09T00:36:52.013Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-05-09T00:36:52.013Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.602Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-05-09T00:36:54.061Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:36:54.061Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:36:54.061Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:36:54.061Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:37:12.540Z] [NbConvertApp] Writing 100759 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-05-09T00:37:12.540Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb +[2024-05-09T00:37:12.540Z] + filename=Sensitivity_analysis.ipynb +[2024-05-09T00:37:12.540Z] + echo Sensitivity_analysis.ipynb +[2024-05-09T00:37:12.540Z] + sed s/.ipynb$// +[2024-05-09T00:37:12.540Z] + filename=Sensitivity_analysis +[2024-05-09T00:37:12.540Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-05-09T00:37:12.540Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb +[2024-05-09T00:37:14.490Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-05-09T00:37:15.878Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:37:15.878Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:37:15.878Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:37:15.878Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:37:37.864Z] [NbConvertApp] Writing 28175 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-05-09T00:37:37.864Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] + filename=time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] + sed s/.ipynb$// +[2024-05-09T00:37:37.864Z] + echo time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] + filename=time_series_analysis +[2024-05-09T00:37:37.864Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-05-09T00:37:37.864Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-05-09T00:37:38.137Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:37:38.137Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:37:38.137Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:37:38.137Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:37:50.387Z] [NbConvertApp] Writing 190794 bytes to buildout/time_series_analysis.output.ipynb +[2024-05-09T00:37:50.387Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:50.387Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:50.387Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:50.387Z] + sed s/.ipynb$// +[2024-05-09T00:37:50.387Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-05-09T00:37:50.387Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-05-09T00:37:50.387Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:51.830Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-05-09T00:37:52.800Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:37:52.800Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:37:52.800Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:37:52.800Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:43:29.556Z] [NbConvertApp] Writing 463905 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-05-09T00:43:29.556Z] + exit 1 +[2024-05-09T00:43:29.556Z] + EXIT_CODE=1 +[2024-05-09T00:43:29.556Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-09T00:43:29.556Z] + mkdir -p buildout/env-dump +[2024-05-09T00:43:29.556Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-09T00:43:29.556Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-09T00:43:29.556Z] + conda env export -n birdy +[2024-05-09T00:43:47.652Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T00:43:47.652Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T00:43:47.652Z] + conda list -n birdy --explicit +[2024-05-09T00:43:55.739Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T00:43:55.739Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T00:43:55.739Z] + pip freeze +[2024-05-09T00:43:56.669Z] + exit 1 +[Pipeline] } +[Pipeline] // withCredentials +[Pipeline] } +[Pipeline] // script +[Pipeline] } +[Pipeline] // stage +[Pipeline] stage +[Pipeline] { (Declarative: Post Actions) +[Pipeline] archiveArtifacts +[2024-05-09T00:43:57.610Z] Archiving artifacts +[2024-05-09T00:43:57.717Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:43:58.182Z] Archiving artifacts +[2024-05-09T00:44:00.540Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:01.066Z] Archiving artifacts +[2024-05-09T00:44:01.080Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:01.102Z] Archiving artifacts +[2024-05-09T00:44:01.123Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:01.319Z] Archiving artifacts +[2024-05-09T00:44:01.435Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:01.511Z] Archiving artifacts +[2024-05-09T00:44:01.543Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:03.091Z] Archiving artifacts +[2024-05-09T00:44:03.123Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:03.147Z] Archiving artifacts +[2024-05-09T00:44:03.272Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:03.433Z] Archiving artifacts +[2024-05-09T00:44:03.817Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:05.439Z] Archiving artifacts +[2024-05-09T00:44:05.848Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-05-09T00:44:09.179Z] Archiving artifacts +[2024-05-09T00:44:09.445Z] Recording fingerprints +[Pipeline] emailextrecipients +[Pipeline] step +[2024-05-09T00:44:10.765Z] Sending e-mails to: vu.long@ouranos.ca +[Pipeline] } +[Pipeline] // stage +[Pipeline] } +[Pipeline] // timeout +[Pipeline] } +[Pipeline] // timestamps +[Pipeline] } +[Pipeline] // ansiColor +[Pipeline] } +$ docker stop --time=1 a3275acd14887a1929af7f5e4b800188281d27befd51e92b8ec9f8b8dd84d2df +$ docker rm -f a3275acd14887a1929af7f5e4b800188281d27befd51e92b8ec9f8b8dd84d2df +[Pipeline] // withDockerContainer +[Pipeline] } +[Pipeline] // withEnv +[Pipeline] } +[Pipeline] // node +[Pipeline] End of Pipeline +ERROR: script returned exit code 1 +Finished: FAILURE diff --git a/launchcontainer b/launchcontainer index dfe3231..dbdaaa7 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py39-230601-1-update240116" + DOCKER_IMAGE="pavics/workflow-tests:py311-240506-update240508" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 3254017..2392d9d 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py39-230601-1-update240116" + DOCKER_IMAGE="pavics/workflow-tests:py311-240506-update240508" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/notebooks/output-sanitize.cfg b/notebooks/output-sanitize.cfg index e27a859..90eb328 100644 --- a/notebooks/output-sanitize.cfg +++ b/notebooks/output-sanitize.cfg @@ -107,6 +107,14 @@ replace: /tmpRANDOM.png regex: /tmp[a-zA-Z0-9_]{8}/ replace: /tmpRANDOM/ +[ipykernel-temp-dir] +# - /tmp/ipykernel_1380/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +# ? ^^^ +# + /tmp/ipykernel_3157/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +# ? + ^^ +regex: ipykernel_\d+ +replace: ipykernel_NUM + [percent-percent-time-output-cpu-times] # CPU times: user 4.74 s, sys: 110 ms, total: 4.84 s regex: CPU times:\s+user\s+\d+.+\,\s+sys:\s+\d+.+\,\s+total:\s+\d+\.?\d*\s+[a-z]+ diff --git a/runtest b/runtest index 5d97fc7..5256553 100755 --- a/runtest +++ b/runtest @@ -50,7 +50,7 @@ if [ -n "$CONFIG_OVERRIDE_SCRIPT_URL" ]; then . "$TMP_CONF_OVERRIDE" fi -py.test --nbval $NOTEBOOKS --sanitize-with notebooks/output-sanitize.cfg $PYTEST_EXTRA_OPTS +py.test --nbval $NOTEBOOKS --nbval-sanitize-with notebooks/output-sanitize.cfg $PYTEST_EXTRA_OPTS EXIT_CODE="$?" # lowercase SAVE_RESULTING_NOTEBOOK string @@ -75,12 +75,12 @@ if [ x"$SAVE_RESULTING_NOTEBOOK" = xtrue ]; then # prevent name clash filename="${filename}_`date '+%s'`" fi - # Timeout must not be more than 240s (4 mins). + # Timeout must not be more than 240s (4 mins). Default in Jenkinsfile. # Tutorial notebooks should be fast so user do not lose patience waiting # for them to run. If more than 4 mins, in addition to simplifying the # notebook, should also check machine performance. jupyter nbconvert --to notebook --execute \ - --ExecutePreprocessor.timeout=240 --allow-errors \ + --ExecutePreprocessor.timeout=${SAVE_RESULTING_NOTEBOOK_TIMEOUT} --allow-errors \ --output-dir buildout --output "${filename}.output.ipynb" "$nb" done fi