-
Notifications
You must be signed in to change notification settings - Fork 25
49 lines (39 loc) · 1.37 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
name: Test
on: [push, pull_request]
jobs:
run_tests:
name: Run unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
tensorflow: ['tensorflow']
# the implementation for scipy.ndimage changed in SciPy 1.6.0,
# causing some of the tests to fail
scipy: ['scipy']
include:
# run an experiment with an old scipy.ndimage:
# the implementation for scipy.ndimage changed in SciPy 1.6.0,
# so the output will not match in newer versions
- python-version: '3.7'
tensorflow: tensorflow
scipy: 'scipy<=1.5.4'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies with ${{ matrix.scipy }}, ${{ matrix.tensorflow }} and torch
run: |
python -m pip install --upgrade pip
pip install packaging
pip install "${{ matrix.scipy }}"
pip install "${{ matrix.tensorflow }}"
pip install torch
- name: Build and install elasticdeform
run: pip install -e .
- name: Run tests
run: python tests/test_deform_grid.py -v