-
Notifications
You must be signed in to change notification settings - Fork 151
50 lines (40 loc) · 1.13 KB
/
testing.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
name: Testing
on:
push:
branches:
- master
pull_request:
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.9]
torch-version: [2.4.0, 2.5.0]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install PyTorch ${{ matrix.torch-version }}
run: |
pip install torch==${{ matrix.torch-version }} --extra-index-url https://download.pytorch.org/whl/cpu
- name: Install scipy
if: ${{ matrix.python-version == '3.9' }}
run: |
pip install scipy==1.10.1
- name: Install main package
run: |
python setup.py develop
- name: Run test-suite
run: |
pip install pytest pytest-cov
pytest --cov --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v4
if: success()
with:
fail_ci_if_error: false