From 2c83afb3a9e513326f80e2da3ac7d25b711e086a Mon Sep 17 00:00:00 2001 From: "Dr. Ernie Prabhakar" Date: Fri, 26 Jan 2024 20:41:15 -0800 Subject: [PATCH] disable download test on windows --- .../nextflow/quilt/nio/QuiltFileSystemProviderTest.groovy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/nf-quilt/src/test/nextflow/quilt/nio/QuiltFileSystemProviderTest.groovy b/plugins/nf-quilt/src/test/nextflow/quilt/nio/QuiltFileSystemProviderTest.groovy index c6ee7af1..b9e02856 100644 --- a/plugins/nf-quilt/src/test/nextflow/quilt/nio/QuiltFileSystemProviderTest.groovy +++ b/plugins/nf-quilt/src/test/nextflow/quilt/nio/QuiltFileSystemProviderTest.groovy @@ -6,12 +6,15 @@ import groovy.transform.CompileDynamic import java.nio.file.Path import java.nio.file.Paths import java.nio.file.Files +import groovy.util.logging.Slf4j +import spock.lang.IgnoreIf /** * * @author Ernest Prabhakar */ @CompileDynamic +@Slf4j class QuiltFileSystemProviderTest extends QuiltSpecification { void 'should return Quilt storage scheme'() { @@ -25,6 +28,7 @@ class QuiltFileSystemProviderTest extends QuiltSpecification { // newDirectoryStream returns package path for write // do we need a new schema for quilt+local? + @IgnoreIf({ System.getProperty('os.name').contains('indows') }) void 'should download file from remote to local destination'() { given: QuiltFileSystemProvider provider = new QuiltFileSystemProvider()