Skip to content

DM-37875: Add ltd-upload action #86

DM-37875: Add ltd-upload action

DM-37875: Add ltd-upload action #86

Workflow file for this run

name: build_and_test
on:
push:
branches:
- main
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
# Need to clone everything for the git tags.
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
- name: Update pip/wheel infrastructure
shell: bash -l {0}
run: |
conda install -y -q "pip<22" wheel
- name: Install dependencies
shell: bash -l {0}
run: |
pip install -r requirements.txt
# We have two cores so we can speed up the testing with xdist
- name: Install pytest packages
shell: bash -l {0}
run: |
conda install -y -q \
pytest pytest-xdist pytest-openfiles pytest-cov
- name: List installed packages
shell: bash -l {0}
run: |
conda list
pip list -v
- name: Build and install
shell: bash -l {0}
run: |
pip install -v -e .
- name: Run tests
shell: bash -l {0}
env:
DAF_BUTLER_MIGRATE_DIR: .
DAF_BUTLER_MIGRATE_MIGRATIONS: ./migrations
run: |
pytest -r a -v -n 3 --open-files --cov=lsst.daf.butler_migrate --cov=tests --cov-report=xml --cov-report=term --cov-branch
- name: Upload coverage to codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml