Skip to content

Switch build backend to hatchling #444

Switch build backend to hatchling

Switch build backend to hatchling #444

Workflow file for this run

name: Test
on:
pull_request:
paths-ignore:
- 'docs/**'
jobs:
style:
name: Style
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/[email protected]
build-wheel:
needs: style
name: Build wheel
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build wheel
run: |
pip install wheel
pip wheel -w ~/.wheelhouse .
- uses: actions/upload-artifact@v4
with:
name: mnelab-wheel
path: ~/.wheelhouse/mnelab*.whl
test:
needs: build-wheel
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
name: Run tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v4
with:
name: mnelab-wheel
- name: Install Linux packages
run: |
sudo apt update
sudo apt install libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \
libxkbcommon-x11-0 xvfb libxcb-randr0 \
libxcb-render-util0 libxcb-xinerama0 libegl1 \
libxcb-shape0 libxcb-cursor0
- name: Install Python packages
run: |
pip install $(echo mnelab*.whl)
pip install pytest pytest-qt pytest-xvfb
- name: Run tests
run: pytest