From 3f8c02e5d831ca13b9aee074424e3354ddf0e3df Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Thu, 22 Aug 2024 21:17:07 -0400 Subject: [PATCH] ci(python-wasm): disable dicom tests Requires test data from the dcmqi source directory, which is not available in the CI configuration. --- .github/workflows/python-wasm.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-wasm.yml b/.github/workflows/python-wasm.yml index 6712df9cd..7cd96d903 100644 --- a/.github/workflows/python-wasm.yml +++ b/.github/workflows/python-wasm.yml @@ -69,7 +69,7 @@ jobs: pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" build:python:wasi - name: Test python on system - if: ${{ matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'image-io' && matrix.package != 'downsample' ) }} + if: ${{ matrix.package != 'dicom' && matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'dicom' && matrix.package != 'image-io' && matrix.package != 'downsample' ) }} run: | pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" test:python:wasi @@ -81,6 +81,6 @@ jobs: browser-version: latest - name: Test python on chrome - if: ${{ matrix.python-minor-version > 10 && matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'image-io' && matrix.package != 'dicom' && matrix.os != 'macos-14' )}} + if: ${{ matrix.python-minor-version > 10 && matrix.package != 'dicom' && matrix.os == 'ubuntu-22.04' || (matrix.package != 'mesh-io' && matrix.package != 'image-io' && matrix.package != 'dicom' && matrix.os != 'macos-14' )}} run: | pnpm run --aggregate-output --filter "@itk-wasm/${{ matrix.package }}-build" test:python:emscripten