Skip to content

Update to newest NXmpes_arpes data format #21

Update to newest NXmpes_arpes data format

Update to newest NXmpes_arpes data format #21

Workflow file for this run

name: pytest
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pytest:
runs-on: ubuntu-latest
env:
QT_QPA_PLATFORM: offscreen
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install package
run: |
pip install -e ".[core, test]"
pip install pytest pytest-qt
- name: Test with pytest
run: |
pytest -sv --show-capture=no tests