Address deprecations: remove _param_watchers, raise RuntimeError on unsafe ops during init, and failed validation of a parameter default after inheritance #1030
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
schedule: | |
- cron: '0 13 * * SUN' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pre_commit: | |
name: Run pre-commit hooks | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "1" | |
- name: set PY | |
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: pre-commit | |
uses: pre-commit/[email protected] | |
test_suite: | |
name: Test ${{ matrix.python-version }}, ${{ matrix.platform }} | |
needs: [pre_commit] | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: ['ubuntu-latest', 'windows-latest', 'macos-latest'] | |
python-version: ${{ ( github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || ( github.event_name == 'push' && github.ref_type == 'tag' ) ) && fromJSON('["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]') || fromJSON('["3.8", "3.10", "3.12"]') }} | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "100" | |
- name: Fetch unshallow | |
run: git fetch --prune --tags --unshallow -f | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: env setup | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install hatch | |
- name: temp patch pip for blosc2 | |
if: contains(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' | |
run: echo "PIP_ONLY_BINARY=blosc2" >> $GITHUB_ENV | |
- name: run unit tests | |
run: hatch -v run +py=${{ matrix.python-version }} tests:with_coverage | |
- name: run examples tests | |
# A notebook fails on Windows (UNIX path used in an example) | |
# No need to run these tests for PyPy really | |
if: contains(matrix.platform, 'ubuntu') && !startsWith(matrix.python-version, 'py') | |
run: hatch -v run +py=${{ matrix.python-version }} tests_examples:examples | |
- name: Upload coverage reports to Codecov | |
if: github.event_name == 'push' || github.event_name == 'pull_request' | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: false | |
verbose: false | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |