Use pyuvdata3 #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |