DO NOT MERGE: Refactor the top-most level of LSST metadetect #38
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: tests-ngmix-upstream | |
on: | |
push: | |
branches: | |
- master | |
pull_request: null | |
jobs: | |
tests-ngmix-upstream: | |
name: tests-ngmix-upstream | |
strategy: | |
matrix: | |
pyver: ["3.9", "3.10"] | |
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 | |
python -m pip install -e . | |
conda uninstall ngmix --force -y | |
python -m pip install git+https://github.com/esheldon/ngmix.git | |
- name: lint | |
shell: bash -l {0} | |
run: | | |
flake8 metadetect | |
- name: test ngmix w/ conda latest | |
shell: bash -l {0} | |
run: | | |
# don't run metadetect/lsst/tests | |
pytest -v -n 4 metadetect/tests | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_timing --log-cli-level=info | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_simple[wmom-1000000.0-7-64] | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_simple[ksigma-1000000.0-7-64] | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_simple[pgauss-1000000.0-7-64] | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_simple[am-1000000.0-7-64] | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_simple[gauss-1000000.0-7-64] | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_color[wmom-1000000.0-7-64] | |
pytest -vvs shear_meas_test/test_shear_meas.py -k test_shear_meas_color[pgauss-1000000.0-7-64] |