-
Notifications
You must be signed in to change notification settings - Fork 9
62 lines (48 loc) · 1.44 KB
/
tests.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
62
name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
unit_test_linux:
name: linux-cp${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache dependency binaries
id: cache-bin
uses: actions/cache@v3
with:
key: bin
path: |
~/.local/bin
~/.cache/pip
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version}}
- name: Install package
run: |
pip install -e ".[ants]"
- name: Install test dependencies
run: |
export BIN=~/.local/bin
pip install pytest
mkdir -p $BIN
cd /tmp
if [[ ! -f $BIN/greedy ]]; then
curl -o greedy.tgz -L -s https://sourceforge.net/projects/greedy-reg/files/Nightly/greedy-nightly-Linux-gcc64.tar.gz/download
tar xf greedy.tgz
cp greedy*/bin/greedy $BIN/greedy
fi
if [[ ! -f $BIN/c3d ]]; then
curl -o c3d.tgz -L -s https://sourceforge.net/projects/c3d/files/c3d/Nightly/c3d-nightly-Linux-gcc64.tar.gz/download
tar xf c3d.tgz
cp c3d*/bin/c3d $BIN/c3d
fi
- name: Run tests
run: |
pytest tests/unit