From 82681be74a7f36e011c6feb296909c8af397d438 Mon Sep 17 00:00:00 2001 From: Tom Birdsong Date: Wed, 9 Aug 2023 14:52:09 -0400 Subject: [PATCH] BUG: Disable broken "inMemory_zip" test (#36) Disable "IOOMEZarrNGFF_inMemory_zip" test which sometimes writes a corrupted archive on Linux. "zip" tensorstore driver will be investigated independently in the InsightSoftwareConsortium Tensorstore fork and enabled when "zip" write on Linux is supported again. https://github.com/InsightSoftwareConsortium/ITKIOOMEZarrNGFF/issues/36 --- .github/workflows/build-test-package.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index 241cbcc..c95160e 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -6,6 +6,7 @@ env: itk-git-tag: "v5.4rc01" itk-wheel-tag: "v5.4rc01" ITKPythonPackage-git-tag: "5ad02309321621cdc7269b9b68a35013c912271c" + ctest-options: "-E IOOMEZarrNGFF_inMemory_zip" jobs: build-test-cxx: @@ -137,13 +138,13 @@ jobs: - name: Build and test if: matrix.os != 'windows-2022' run: | - ctest --output-on-failure -j 2 -V -S dashboard.cmake + ctest --output-on-failure -j 2 -V -S dashboard.cmake ${{ env.ctest-options }} - name: Build and test if: matrix.os == 'windows-2022' run: | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" - ctest --output-on-failure -j 2 -V -S dashboard.cmake + ctest --output-on-failure -j 2 -V -S dashboard.cmake ${{ env.ctest-options }} shell: cmd build-linux-py: