[REF] Support SPM25 for pet-volume (#1547)
#119
This file contains hidden or 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
| name: Fast Non Regression Tests | |
| on: | |
| push: | |
| branches: [dev] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| # test-non-regression-fast-MacOS: | |
| # runs-on: | |
| # - self-hosted | |
| # - macOS | |
| # steps: | |
| # - uses: actions/checkout@v6 | |
| # - name: Run fast non regression tests | |
| # run: | | |
| # make env.conda | |
| # source ~/miniconda3/etc/profile.d/conda.sh | |
| # conda activate "${{ github.workspace }}"/env | |
| # source "$(brew --prefix)/opt/modules/init/bash" | |
| # module load clinica.all | |
| # make install | |
| # cd test | |
| # poetry run pytest --verbose \ | |
| # --working_directory=/Volumes/data/working_dir_mac \ | |
| # --input_data_directory=/Volumes/data_ci \ | |
| # --junitxml=./test-reports/non_regression_fast_mac.xml \ | |
| # --disable-warnings \ | |
| # -m "fast" \ | |
| # ./nonregression/ | |
| test-non-regression-fast-Linux: | |
| runs-on: | |
| - self-hosted | |
| - Linux | |
| - test-runner | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run fast non regression tests | |
| run: | | |
| make env.conda | |
| source /builds/miniconda/etc/profile.d/conda.sh | |
| conda activate "${{ github.workspace }}"/env | |
| source /usr/local/Modules/init/profile.sh | |
| module load clinica.all | |
| make install | |
| cd test | |
| poetry run pytest --verbose \ | |
| --working_directory=/mnt/data/ci/working_dir_linux \ | |
| --input_data_directory=/mnt/data_ci \ | |
| --junitxml=./test-reports/non_regression_fast_linux.xml \ | |
| --disable-warnings \ | |
| -m "fast" \ | |
| ./nonregression/ |