Dataset refactoring part1 #432
Workflow file for this run
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
name: Resume Tests (GPU) | |
on: | |
push: | |
branches: ["dev", "refactoring"] | |
pull_request: | |
branches: ["dev", "refactoring"] | |
types: [opened, synchronize, reopened, ready_for_review] | |
permissions: | |
contents: read | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
env: | |
POETRY_VERSION: '1.8.3' | |
PYTHON_VERSION: '3.11' | |
jobs: | |
test-resume-gpu: | |
if: github.event.pull_request.draft == false | |
runs-on: | |
- self-hosted | |
- Linux | |
- ubuntu | |
- gpu | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: snok/install-poetry@v1 | |
with: | |
version: ${{ env.POETRY_VERSION }} | |
virtualenvs-create: false | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Run resume tests on GPU | |
run: | | |
source "${HOME}/miniconda3/etc/profile.d/conda.sh" | |
make env.conda | |
conda activate "${{ github.workspace }}"/env | |
make install | |
cd tests | |
poetry run pytest \ | |
--junitxml=./test-reports/test_resume_report.xml \ | |
--disable-warnings \ | |
--verbose \ | |
--basetemp=$HOME/actions_runner_workdir/resume \ | |
--input_data_directory=/mnt/data/clinicadl_data_ci/data_ci \ | |
test_resume.py | |
- name: Cleaning | |
run: | | |
rm -rf $HOME/actions_runner_workdir/resume/* |