Skip to content

Migrations for recent sdm_schemas: psf, pixelscale, mountjitter, magnitude limits #192

Migrations for recent sdm_schemas: psf, pixelscale, mountjitter, magnitude limits

Migrations for recent sdm_schemas: psf, pixelscale, mountjitter, magnitude limits #192

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Run PyTest
on:
push:
branches:
- main
pull_request:
jobs:
run_pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build docker image
run: docker build -f Dockerfile.pytest -t pytest_image .
- name: Run docker image
run: docker run --rm -e PYTEST_ADDOPTS="--color=yes" pytest_image