Skip to content

Commit

Permalink
disable download test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Jan 27, 2024
1 parent a1fe762 commit 2c83afb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
*/
@CompileDynamic
@Slf4j
class QuiltFileSystemProviderTest extends QuiltSpecification {

void 'should return Quilt storage scheme'() {
Expand All @@ -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()
Expand Down

0 comments on commit 2c83afb

Please sign in to comment.