-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (45 loc) · 1.26 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
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@v2
- name: Python setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- 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 .
- name: Fetching data
run: |
cd tests
mkdir templ_data
cd templ_data
wget -q -r -nd -np https://people.ast.cam.ac.uk/~koposov/files/rvspecfit_files/v2401/
mv small_phoenix.tar.gz ../
cd ..
tar xfz small_phoenix.tar.gz
cd ..
- name: Testing
run: |
pytest --cov=rvspecfit
- name: Coveralls
if: ${{ success() }}
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}