Skip to content

Merge branch 'dev-v1.0.2-pre.1' of github.com:NeLy-EPFL/flygym into d… #87

Merge branch 'dev-v1.0.2-pre.1' of github.com:NeLy-EPFL/flygym into d…

Merge branch 'dev-v1.0.2-pre.1' of github.com:NeLy-EPFL/flygym into d… #87

Workflow file for this run

name: Unit tests (Windows)
on: [push]
env:
SKIP_RENDERING: "true"
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.12"]
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