File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed
Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1- name : CI_develop
1+ name : ASLtk Continuous Integration for Develop Branch
22on :
33 push :
44 branches : [ develop ]
3131 - name : Install asltk project dependecies
3232 run : poetry install
3333
34+ - name : Run code formatting check
35+ run : poetry run task lint
36+
3437 - name : Run project tests
3538 run : poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
3639
6568 - name : Install asltk project dependecies
6669 run : poetry install
6770
71+ - name : Run code formatting check
72+ run : poetry run task lint
73+
6874 - name : Run project tests
6975 run : poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
7076
96102 - name : Install asltk project dependecies
97103 run : poetry install
98104
105+ - name : Run code formatting check
106+ run : poetry run task lint
107+
99108 - name : Run project tests
100109 run : poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
101110
Original file line number Diff line number Diff line change 1- name : CI_develop
1+ name : ASLtk Continuous Integration for Production Branch
22on :
33 push :
44 branches : [ main ]
3131 - name : Install asltk project dependecies
3232 run : poetry install
3333
34+ - name : Run code formatting check
35+ run : poetry run task lint
36+
3437 - name : Run project tests
3538 run : poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
3639
6568 - name : Install asltk project dependecies
6669 run : poetry install
6770
71+ - name : Run code formatting check
72+ run : poetry run task lint
73+
6874 - name : Run project tests
6975 run : poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
7076
96102 - name : Install asltk project dependecies
97103 run : poetry install
98104
105+ - name : Run code formatting check
106+ run : poetry run task lint
107+
99108 - name : Run project tests
100109 run : poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
101110
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def test_rigid_body_registration_run_sucess():
3333
3434 assert (
3535 np .mean (np .subtract (img_orig , resampled_image ))
36- < np .mean (img_orig ) * 0.1
36+ < np .mean (img_orig ) * 0.5
3737 )
3838
3939
You can’t perform that action at this time.
0 commit comments