Skip to content

deps: update code for x_orientation for new pyuvdata 3.2 #3

deps: update code for x_orientation for new pyuvdata 3.2

deps: update code for x_orientation for new pyuvdata 3.2 #3

Workflow file for this run

name: Run Warnings Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
tests:
name: Tests
env:
PYTHON: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11", "3.12", "3.13"]
fail-fast: false
steps:
- uses: actions/checkout@main
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install
run: uv sync --all-extras --dev
- name: Run Tests
run: |
export MPLBACKEND=agg
uv run pytest -Werror