Skip to content

Migrate to pyproject.toml, update min Python to 3.9, consolidate dev workflows #519

Migrate to pyproject.toml, update min Python to 3.9, consolidate dev workflows

Migrate to pyproject.toml, update min Python to 3.9, consolidate dev workflows #519

Workflow file for this run

name: Test pyglider
on: [push, pull_request]
defaults:
run:
shell: bash -el {0}
jobs:
test-gliders:
name: pyglider (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: mamba setup enviroment
uses: mamba-org/[email protected]
with:
environment-name: test-env
environment-file: environment.yml
create-args: >-
python=${{ matrix.python-version }}
- name: install pyglider source
run: |
pip install -e .
- name: Process seaexplorer
run: |
cd tests/example-data/example-seaexplorer
make clean-all
python process_deploymentRealTime.py
- name: Process slocum
run: |
cd tests/example-data/example-slocum
make clean-all
python process_deploymentRealTime.py
- name: Process seaexplorer-legato-flntu-arod-ad2cp
run: |
cd tests/example-data/example-seaexplorer-legato-flntu-arod-ad2cp
make clean-all
python process_deploymentRealTime.py
- name: Run tests
run: pytest --cov --cov-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4