Skip to content

Avoid persisting Futures #237

Avoid persisting Futures

Avoid persisting Futures #237

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# os: ["windows-latest", "ubuntu-latest", "macos-latest"]
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
# query-planning: [true, false]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
PARALLEL: "true"
COVERAGE: "true"
# DASK_DATAFRAME__QUERY_PLANNING: ${{ matrix.query-planning }}
steps:
- name: Checkout source
uses: actions/checkout@v2
with:
fetch-depth: 0 # Needed by codecov.io
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install Python
run: uv python install ${{ matrix.python-version }}
- name: Install dask-ml
run: uv pip install -e .[dev]
- name: Run tests
shell: bash -l {0}
run: uv run pytest -v