Skip to content

Fix optional dependencies #990

Fix optional dependencies

Fix optional dependencies #990

Workflow file for this run

name: Tests
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '41 16 * * *' # Every day at 16:41 UTC (to avoid high load at exact hour values).
jobs:
tests-full-install:
name: Run tests with full install
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # Ensure matrix jobs keep running even if one fails
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install default (with full options) and test dependencies
run: pdm install --group full --group test --frozen-lockfile
- name: Run unit and doc tests with coverage report
run: pdm run pytest tests/unit tests/doc --cov=src --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
tests-default-install:
name: Run (most) tests with default install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install default (without any option) and test dependencies
run: pdm install --group test --frozen-lockfile
- name: Run unit and doc tests with coverage report
run: |
pdm run pytest tests/unit tests/doc
--ignore tests/unit/aggregation/test_cagrad.py
--ignore tests/unit/aggregation/test_nash_mtl.py
--ignore tests/doc/test_aggregation.py
--cov=src --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
build-doc:
name: Build doc
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: '3.13'
- name: Install dependencies (default with full options & doc)
run: pdm install --group full --group doc --frozen-lockfile
- name: Build Documentation
working-directory: docs
run: pdm run make dirhtml