Skip to content

Merge pull request #213 from NeLy-EPFL/dev-v1.0.2-pre.1 #90

Merge pull request #213 from NeLy-EPFL/dev-v1.0.2-pre.1

Merge pull request #213 from NeLy-EPFL/dev-v1.0.2-pre.1 #90

Workflow file for this run

name: Unit tests (macOS)
on: [push]
env:
SKIP_RENDERING: "true"
jobs:
build:
strategy:
matrix:
os: ["macos-13", "macos-latest"]
python-version: ["3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip cache purge
pip install "flyvision @ https://github.com/Nely-EPFL/flyvis/archive/refs/heads/main.zip"
pip cache purge
pip install -e ".[dev,examples]"
- name: Test with pytest
run: |
python -m pytest