From dab9931106eb8a4d2e1b4575db4515ce2a0bfa31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Pedersen?= Date: Wed, 11 Sep 2024 11:26:27 +0200 Subject: [PATCH] Added batch mode test; include one more test sample --- .github/workflows/integration_test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index cc430a4..8c19ff1 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -72,9 +72,17 @@ jobs: - name: Download test data run: | + wget https://openslide.cs.cmu.edu/download/openslide-testdata/Olympus/OS-1.zip wget https://openslide.cs.cmu.edu/download/openslide-testdata/Olympus/OS-2.zip + unzip OS-1.zip unzip OS-2.zip + mkdir WSI/ + mv OS-* WSI/ - name: Test single conversion - run: vsi2tif -i ./OS-2.vsi -o ./OS-2.tif -b bftools/bfconvert -v 0 + run: vsi2tif -i ./WSI/OS-2.vsi -o ./OS-2.tif -b bftools/bfconvert -v 0 + shell: bash + + - name: Test batch conversion + run: vsi2tif -i ./WSI -o ./converted/ -b bftools/bfconvert -v 0 shell: bash