Skip to content

Update tests and expected values for DESI DR1 #63

Update tests and expected values for DESI DR1

Update tests and expected values for DESI DR1 #63

Workflow file for this run

# This workflow will install Python dependencies and run unittests with a variety of Python versions
name: ci-django-unittests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run unittests
run: |
serverurl=https://sparc1.datalab.noirlab.edu/ python -m unittest tests.tests_api