Merge pull request #222 from lsst-dm/u/arunkannawadi/get_detection_mask #19
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-ngmix-upstream | |
on: | |
push: | |
branches: | |
- master | |
pull_request: null | |
jobs: | |
lsst-tests-ngmix-upstream: | |
name: lsst-tests-ngmix-upstream | |
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 | |
- name: configure conda and install code | |
shell: bash -l {0} | |
run: | | |
conda config --set always_yes yes | |
conda install --quiet --yes --file requirements.txt | |
conda install --quiet --yes --file dev-requirements.txt | |
conda 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 . | |
conda uninstall ngmix --force -y | |
python -m pip install git+https://github.com/esheldon/ngmix.git | |
- name: test | |
shell: bash -l {0} | |
run: | | |
# we run metadetect/tests and metadetect/lsst/tests | |
pytest -v -n 4 metadetect |