DM-41142: Make metadetect a EUPS package #14
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: lsst-tests | |
on: | |
push: | |
branches: | |
- lsst-dev | |
- main | |
- master | |
pull_request: null | |
schedule: | |
- cron: 0 23 * * 4 | |
jobs: | |
lsst-tests: | |
name: lsst-tests | |
strategy: | |
matrix: | |
pyver: ["3.11"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ matrix.pyver }} | |
channels: conda-forge,defaults | |
channel-priority: strict | |
show-channel-urls: true | |
miniforge-version: latest | |
miniforge-variant: Mambaforge | |
- name: configure conda and install code | |
shell: bash -l {0} | |
run: | | |
conda config --set always_yes yes | |
mamba install --quiet --yes --file requirements.txt | |
mamba install --quiet --yes --file dev-requirements.txt | |
mamba install -q -y stackvana=0 lsstdesc-weaklensingdeblending | |
pip install --no-deps git+https://github.com/LSSTDESC/descwl-shear-sims.git | |
pip install --no-deps git+https://github.com/LSSTDESC/descwl_coadd.git | |
python -m pip install -e . | |
- name: test ngmix w/ conda latest | |
shell: bash -l {0} | |
run: | | |
# we run metadetect/tests and metadetect/lsst/tests | |
pytest -v -n 4 --cov=metadetect --cov-report term-missing metadetect |