-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (58 loc) · 2.13 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Testing
# Run this workflow every time a new commit pushed to your repository
on: push
jobs:
tester:
name: Test the code
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Python setup
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
cache: 'pip'
- name: Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
pip install pytest-cov
pip install coveralls
pip install scikit-learn torch
pip install wheel
pip install .
pip install pytz numba healpy speclite fitsio photutils==1.6.0
pip install git+https://github.com/desihub/desiutil@3.2.2
pip install --no-build-isolation git+https://github.com/desihub/desitarget@2.7.0
# for desitarget
- name: Fetching data
run: |
cd tests
mkdir templ_data
wget -q https://people.ast.cam.ac.uk/~koposov/files/rvspecfit_files/v2407/small_phoenix.tar.gz
tar xfz small_phoenix.tar.gz
mkdir templ_data_desi
cd templ_data_desi/
wget -q -r -np -nd https://people.ast.cam.ac.uk/~koposov/files/rvspecfit_files/v2407/templ_data_desi/
cd ..
mkdir templ_data_sdss
cd templ_data_sdss/
wget -q -r -np -nd https://people.ast.cam.ac.uk/~koposov/files/rvspecfit_files/v2407/templ_data_sdss/
cd ../data/
wget -q https://data.desi.lbl.gov/public/edr/spectro/redux/fuji/healpix/sv1/bright/103/10378/coadd-sv1-bright-10378.fits
wget -q https://data.desi.lbl.gov/public/edr/spectro/redux/fuji/healpix/sv1/bright/103/10378/redrock-sv1-bright-10378.fits
cd ../../
- name: Testing
run: |
pytest --cov=rvspecfit
- name: Coveralls
if: ${{ success() }}
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}