-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:karanphil/scilpy into b1_correction
- Loading branch information
Showing
30 changed files
with
1,154 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,10 @@ env: | |
jobs: | ||
test: | ||
runs-on: scilus-runners | ||
if: github.repository == 'scilus/scilpy' | ||
steps: | ||
- name: Checkout repository for merge | ||
uses: actions/checkout@v4.1.1 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Fetch python version from repository | ||
id: python-selector | ||
|
@@ -55,16 +56,14 @@ jobs: | |
pytest --cov-report term-missing:skip-covered | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: unittests | ||
name: scilpy-unittests-${{ github.run_id }} | ||
verbose: true | ||
directory: .test_reports/ | ||
fail_ci_if_error: true | ||
root_dir: $GITHUB_WORKSPACE/scilpy/ | ||
plugin: pycoverage | ||
|
||
- name: Upload test reports and coverage to artifacts | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.10 | ||
3.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
def test_apply_bias_field(): | ||
pass | ||
|
||
|
||
def test_compute_dwi_attenuation(): | ||
pass | ||
|
||
|
||
def test_detect_volume_outliers(): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
def test_extract_dwi_shell(): | ||
pass | ||
|
||
|
||
def test_extract_b0(): | ||
pass |
Oops, something went wrong.