Skip to content

docs: mass-to-charge --> mass-to-charge ratio #102

docs: mass-to-charge --> mass-to-charge ratio

docs: mass-to-charge --> mass-to-charge ratio #102

Workflow file for this run

name: continuous-integration
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest] # note mac-latest tests fail due to slight differences in images
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- 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
pip install -r requirements.txt # visual tests are very finiky so fix the versions
pip install . # install pyopenms-viz
- name: Test
run: |
python -m pytest --snapshot-warn-unused test/ # do not fail if unused snapshot, just warn