Scilpy test suite #53
Workflow file for this run
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: Scilpy test suite | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'scilpy/ml/**' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - 'scilpy/ml/**' | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-ml | |
| cancel-in-progress: true | |
| env: | |
| MPLBACKEND: agg | |
| OPENBLAS_NUM_THREADS: 1 | |
| PYTEST_XDIST_AUTO_NUM_WORKERS: 8 | |
| jobs: | |
| test-ml: | |
| runs-on: scilus-large | |
| if: github.repository == 'scilus/scilpy' | |
| steps: | |
| - name: Checkout repository at merge | |
| uses: actions/checkout@v4 | |
| - name: Fetch python version from repository | |
| id: python-selector | |
| run: echo "python-version=$(head -1 .python-version)" >> $GITHUB_OUTPUT | |
| - name: Set up Python and uv for Scilpy | |
| uses: astral-sh/[email protected] | |
| with: | |
| python-version: ${{ steps.python-selector.outputs.python-version }} | |
| activate-environment: true | |
| enable-cache: true | |
| - name: Install non-python dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| curl \ | |
| git \ | |
| libblas-dev \ | |
| liblapack-dev \ | |
| libfreetype6-dev \ | |
| libdrm-dev \ | |
| libgl1-mesa-dev \ | |
| libosmesa6-dev | |
| - name: stdlib checkout | |
| if: ${{ !contains(steps.python-selector.outputs.python-version, '3.12') }} | |
| run: | | |
| echo "SETUPTOOLS_USE_DISTUTILS=stdlib" >> "$GITHUB_ENV" | |
| - name: Install Scilpy | |
| run: | | |
| uv pip install --upgrade pip wheel | |
| uv pip install --upgrade "setuptools<71.0.0" | |
| uv pip install -e . | |
| # TODO: to adapt once Scilpy passes to VTK 9.4.0, which selects OSMesa at runtime | |
| # https://discourse.vtk.org/t/status-update-runtime-opengl-render-window-selection-in-vtk/14583 | |
| VTK_VERSION=$(cat pyproject.toml | grep 'vtk==' | sed 's/vtk==//g' | sed 's/\"//g' ) | |
| uv pip install --extra-index-url https://wheels.vtk.org vtk-osmesa==$VTK_VERSION | |
| uv pip install pytest-xdist pytest-cov | |
| uv pip install torch==2.2.1 torchvision==0.17.1 | |
| - name: Run ML tests | |
| run: | | |
| export C_INCLUDE_PATH=$pythonLocation/include/python${{ steps.python-selector.outputs.python-version }}:$C_INCLUDE_PATH | |
| scil_data_download | |
| uv run pytest -m ml --ml --cov-report term-missing:skip-covered | |
| - name: Save test results and coverage | |
| uses: actions/upload-artifact@v4 | |
| id: test-coverage-results | |
| with: | |
| name: test-coverage-${{ github.run_id }} | |
| retention-days: 1 | |
| include-hidden-files: true | |
| path: | | |
| .coverage | |
| .test_reports/ |