Skip to content

multi os tests

multi os tests #19

Workflow file for this run

name: CoperniFUS viewer
on: [push]
jobs:
build:
runs-on: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
# This is the version of the action for setting up Python, not the Python version.
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Installing CoperniFUS
run: python -m pip install -e .
- name: Installing test dependencies
run: pip install pytest pytest-qt
- name: Download test BrainGlobe atlas
run: brainglobe install -a example_mouse_100um
- name: Testing CoperniFUS
run: pytest tests/test_viewer.py