Skip to content

Use pyuvdata3

Use pyuvdata3 #32

Workflow file for this run

name: Run Warnings Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
warnings:
name: Warnings Tests
env:
ENV_NAME: hera_qm_tests
PYTHON: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
fail-fast: false
steps:
- uses: actions/checkout@main
with:
fetch-depth: 1
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install --upgrade pip
pip install .[tests]
- name: Run Tests
run: |
pytest -W error