Skip to content

Add last_exposure_no to status reply (#50) #573

Add last_exposure_no to status reply (#50)

Add last_exposure_no to status reply (#50) #573

Workflow file for this run

name: Test
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
- '**.md'
- '**.rst'
pull_request:
branches: [main]
paths-ignore:
- 'docs/**'
- '**.md'
- '**.rst'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade wheel pip setuptools
pip install .[fitsio]
- name: Test with pytest
run: |
pip install pytest pytest-mock pytest-asyncio pytest-cov
pytest
env:
OBSERVATORY: LCO
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml