Skip to content

Commit

Permalink
Merge branch 'main' into worker_state_machine
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Apr 4, 2022
2 parents 9a5b006 + ccb0362 commit f83df7a
Show file tree
Hide file tree
Showing 35 changed files with 569 additions and 953 deletions.
1 change: 0 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ omit =
distributed/cli/utils.py
distributed/cli/dask_spec.py
distributed/deploy/ssh.py
distributed/_ipython_utils.py
distributed/_version.py
distributed/pytest_resourceleaks.py
distributed/comm/ucx.py
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Test Report

on:
schedule:
- cron: "47 6 * * *"
# Run 2h after the daily tests.yaml
- cron: "0 8,20 * * *"
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -38,9 +39,10 @@ jobs:
- name: Generate report
shell: bash -l {0}
run: |
python continuous_integration/scripts/test_report.py
python continuous_integration/scripts/test_report.py --days 90 --nfails 1 -o test_report.html
python continuous_integration/scripts/test_report.py --days 7 --nfails 2 -o test_short_report.html
mkdir deploy
mv test_report.html deploy/
mv test_report.html test_short_report.html deploy/
- name: Deploy 🚀
uses: JamesIves/[email protected]
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ tags
.mypy_cache/

reports/
test_report.*
test_short_report.html

# Test failures will dump the cluster state in here
test_cluster_dump/
17 changes: 10 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
Distributed
===========

|Test Status| |Longitudinal Report| |Coverage| |Doc Status| |Discourse| |Version Status| |NumFOCUS|
|Test Status| |Longitudinal Report (full)| |Longitudinal Report (short)| |Coverage| |Doc Status| |Discourse| |Version Status| |NumFOCUS|

A library for distributed computation. See documentation_ for more details.

.. _documentation: https://distributed.dask.org
.. |Test Status| image:: https://github.com/dask/distributed/workflows/Tests/badge.svg?branch=main
:target: https://github.com/dask/distributed/actions?query=workflow%3A%22Tests%22
.. |Longitudinal Report| image:: https://github.com/dask/distributed/workflows/Test%20Report/badge.svg?branch=main
:target: https://dask.github.io/distributed/test_report.html
:alt: Longitudinal test report
.. |Doc Status| image:: https://readthedocs.org/projects/distributed/badge/?version=latest
:target: https://distributed.dask.org
:alt: Documentation Status
.. |Longitudinal Report (full)| image:: https://github.com/dask/distributed/workflows/Test%20Report/badge.svg?branch=main
:target: https://dask.org/distributed/test_report.html
:alt: Longitudinal test report (full version)
.. |Longitudinal Report (short)| image:: https://github.com/dask/distributed/workflows/Test%20Report/badge.svg?branch=main
:target: https://dask.org/distributed/test_short_report.html
:alt: Longitudinal test report (short version)
.. |Coverage| image:: https://codecov.io/gh/dask/distributed/branch/main/graph/badge.svg
:target: https://codecov.io/gh/dask/distributed/branch/main
:alt: Coverage status
.. |Doc Status| image:: https://readthedocs.org/projects/distributed/badge/?version=latest
:target: https://distributed.dask.org
:alt: Documentation Status
.. |Discourse| image:: https://img.shields.io/discourse/users?logo=discourse&server=https%3A%2F%2Fdask.discourse.group
:alt: Discuss Dask-related things and ask for help
:target: https://dask.discourse.group
Expand Down
1 change: 0 additions & 1 deletion continuous_integration/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ dependencies:
- ipykernel
- ipywidgets
- jinja2
- jupyter_client
- msgpack-python
- netcdf4
- paramiko
Expand Down
1 change: 0 additions & 1 deletion continuous_integration/environment-3.8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dependencies:
- ipywidgets
- jinja2
- joblib
- jupyter_client
- msgpack-python
- netcdf4
- paramiko
Expand Down
1 change: 0 additions & 1 deletion continuous_integration/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dependencies:
- ipywidgets
- jinja2
- joblib # overridden by git tip below
- jupyter_client
- lz4 # Only tested here
- msgpack-python
- netcdf4
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/gpuci/axis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ LINUX_VER:
- ubuntu18.04

RAPIDS_VER:
- "22.04"
- "22.06"

excludes:
Loading

0 comments on commit f83df7a

Please sign in to comment.