TST: dask tests are extremely flaky #734
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Array API Tests (Dask) | |
on: [push, pull_request] | |
jobs: | |
array-api-tests-dask: | |
uses: ./.github/workflows/array-api-tests.yml | |
with: | |
package-name: dask | |
package-version: '>= 2024.9.0' | |
module-name: dask.array | |
extra-requires: numpy | |
# Dask is substantially slower then other libraries on unit tests. | |
# Reduce the number of examples to speed up CI, even though this means that this | |
# workflow is barely more than a smoke test, and one should expect extreme | |
# flakiness. Before changes to dask-xfails.txt or dask-skips.txt, please run | |
# the full test suite with at least 200 examples. | |
pytest-extra-args: --max-examples=5 |