02a1de665db5abbfa9a2efd2f1d5ff515aeff01b,tests/testOpRESTfulBlockwiseFilesetReader.py,TestOpBlockwiseFilesetReader,setupClass,#Any#,41

Before Change


    
    @classmethod
    def setupClass(cls):
        if "Darwin" in platform.platform():
            // For unknown reasons, blockwise fileset tests fail due to strange "too many files" errors on mac
            raise nose.SkipTest
        

After Change


    
    @classmethod
    def setupClass(cls):
        if platform.system() == "Darwin" or platform.system() == "Windows":
            // For unknown reasons, blockwise fileset tests fail due to strange "too many files" errors on mac
            // On windows, there are other errors, and we make no attempt to solve them (at the moment).
            raise nose.SkipTest
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 7

Instances


Project Name: ilastik/ilastik
Commit Name: 02a1de665db5abbfa9a2efd2f1d5ff515aeff01b
Time: 2014-03-11
Author: bergs@janelia.hhmi.org
File Name: tests/testOpRESTfulBlockwiseFilesetReader.py
Class Name: TestOpBlockwiseFilesetReader
Method Name: setupClass


Project Name: ilastik/ilastik
Commit Name: 02a1de665db5abbfa9a2efd2f1d5ff515aeff01b
Time: 2014-03-11
Author: bergs@janelia.hhmi.org
File Name: tests/testOpRESTfulBlockwiseFilesetReader.py
Class Name: TestOpBlockwiseFilesetReader
Method Name: setupClass


Project Name: ilastik/ilastik
Commit Name: 02a1de665db5abbfa9a2efd2f1d5ff515aeff01b
Time: 2014-03-11
Author: bergs@janelia.hhmi.org
File Name: tests/testBlockwiseFileset.py
Class Name: TestBlockwiseFileset
Method Name: setupClass


Project Name: ilastik/ilastik
Commit Name: 02a1de665db5abbfa9a2efd2f1d5ff515aeff01b
Time: 2014-03-11
Author: bergs@janelia.hhmi.org
File Name: tests/testOpBlockwiseFilesetReader.py
Class Name: TestOpBlockwiseFilesetReader
Method Name: setUp