non-singular BIE solver, much faster and effecient interpolation for singular integral, and new magnetic field API #6707
This file contains hidden or 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: Notebook tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| notebook_tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| strategy: | |
| matrix: | |
| python-version: ['3.10'] | |
| group: [1, 2, 3] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Filter changes | |
| id: changes | |
| uses: dorny/paths-filter@v4 | |
| with: | |
| filters: | | |
| has_changes: | |
| - 'desc/**' | |
| - 'docs/notebooks/**' | |
| - 'requirements.txt' | |
| - 'devtools/dev-requirements.txt' | |
| - 'setup.cfg' | |
| - '.github/workflows/notebook_tests.yml' | |
| - name: Check for relevant changes | |
| id: check_changes | |
| run: echo "has_changes=${{ !contains(github.event.pull_request.labels.*.name, 'only-docs-comments') && steps.changes.outputs.has_changes }}" >> $GITHUB_ENV | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Check full Python version | |
| run: | | |
| python --version | |
| python_version=$(python --version 2>&1 | cut -d' ' -f2) | |
| echo "Python version: $python_version" | |
| echo "version=$python_version" >> $GITHUB_ENV | |
| - name: Restore Python environment cache | |
| if: env.has_changes == 'true' | |
| id: restore-env | |
| uses: actions/cache/restore@v6 | |
| with: | |
| path: .venv-${{ env.version }} | |
| key: ${{ runner.os }}-venv-${{ env.version }}-${{ hashFiles('devtools/dev-requirements.txt', 'requirements.txt') }} | |
| - name: Set up virtual environment if not restored from cache | |
| if: steps.restore-env.outputs.cache-hit != 'true' && env.has_changes == 'true' | |
| run: | | |
| gh cache list | |
| python -m venv .venv-${{ env.version }} | |
| source .venv-${{ env.version }}/bin/activate | |
| python -m pip install --upgrade pip | |
| pip install -r devtools/dev-requirements.txt | |
| pip install matplotlib==3.10.8 | |
| - name: Action Details | |
| if: env.has_changes == 'true' | |
| run: | | |
| source .venv-${{ env.version }}/bin/activate | |
| which python | |
| python --version | |
| pwd | |
| lscpu | |
| pip list | |
| - name: Test notebooks with pytest and nbmake | |
| if: env.has_changes == 'true' | |
| run: | | |
| source .venv-${{ env.version }}/bin/activate | |
| export PYTHONPATH=$(pwd) | |
| pytest -v --nbmake "./docs/notebooks" \ | |
| --nbmake-timeout=2000 \ | |
| --ignore=./docs/notebooks/zernike_eval.ipynb \ | |
| --splits 3 \ | |
| --group ${{ matrix.group }} \ | |
| --splitting-algorithm least_duration |