forked from esheldon/metadetect
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.05 KB
/
shear_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: shear-tests
on:
push:
branches:
- lsst-dev
- main
- master
workflow_dispatch: null
jobs:
tests:
name: shear-tests
strategy:
matrix:
pyver: ["3.11"]
runs-on: "ubuntu-latest"
steps:
- 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 uninstall ngmix --force -y
pip install git+https://github.com/esheldon/ngmix.git
python -m pip install -e .
- name: test shear meas
shell: bash -l {0}
run: |
pytest -vvs shear_meas_test/test_shear_meas.py