forked from aramis-lab/clinica
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (53 loc) · 1.72 KB
/
test_converters.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
name: Non Regression Tests - Converters
on:
push:
branches: ["dev", "maint-*"]
pull_request:
branches: ["dev", "maint-*"]
permissions:
contents: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test-converters-MacOS:
runs-on:
- self-hosted
- macOS
steps:
- uses: actions/checkout@v4
- name: Run non-regression tests for converters
run: |
make env.conda
source ~/miniconda3/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
make install
cd test
poetry run pytest --verbose \
--working_directory=/Volumes/data/working_dir_mac \
--input_data_directory=/Volumes/data_ci \
--basetemp=/Volumes/data/tmp \
--junitxml=./test-reports/run_converters_mac.xml \
--disable-warnings \
./nonregression/iotools/test_run_converters.py
test-converters-Linux:
runs-on:
- self-hosted
- Linux
- test-runner
steps:
- uses: actions/checkout@v4
- name: Run non-regression tests for converters
run: |
make env.conda
source /builds/miniconda/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
make install
cd test
poetry run pytest --verbose \
--working_directory=/mnt/data/ci/working_dir_linux \
--input_data_directory=/mnt/data_ci \
--basetemp=/mnt/data/ci/tmp \
--junitxml=./test-reports/run_converters_linux.xml \
--disable-warnings \
./nonregression/iotools/test_run_converters.py