ad4007e349ade52915d5cc27571a280d797f17c6,tests/test_applets/dataSelection/testOpDataSelection.py,TestOpDataSelection_SingleFileH5Stacks,test_load_single_file_with_glob,#TestOpDataSelection_SingleFileH5Stacks#,718

Before Change


            print("Exception caught while deleting temporary files: {}".format(e))

    def test_load_single_file_with_glob(self):
        graph = lazyflow.graph.Graph()
        reader = OperatorWrapper(OpDataSelection, graph=graph, operator_kwargs={"forceAxisOrder": False})
        reader.ProjectFile.setValue(self.projectFile)
        reader.WorkingDirectory.setValue(os.getcwd())
        reader.ProjectDataGroup.setValue("DataSelection/local_data")

        info = DatasetInfo(filepath=self.glob_string)
        // Will be read from the filesystem since the data won"t be found in the project file.
        info.location = DatasetInfo.Location.ProjectInternal

After Change


        reader = OperatorWrapper(OpDataSelection, graph=Graph(), operator_kwargs={"forceAxisOrder": False})
        reader.WorkingDirectory.setValue(os.getcwd())

        reader.Dataset.setValues([DatasetInfo(filepath=self.glob_string, sequence_axis="t")])

        // Read the test files using the data selection operator and verify the contents
        imgData = reader.Image[0][...].wait()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 10

Instances


Project Name: ilastik/ilastik
Commit Name: ad4007e349ade52915d5cc27571a280d797f17c6
Time: 2019-07-26
Author: tomaz.vieira@embl.de
File Name: tests/test_applets/dataSelection/testOpDataSelection.py
Class Name: TestOpDataSelection_SingleFileH5Stacks
Method Name: test_load_single_file_with_glob


Project Name: ilastik/ilastik
Commit Name: ad4007e349ade52915d5cc27571a280d797f17c6
Time: 2019-07-26
Author: tomaz.vieira@embl.de
File Name: tests/test_applets/dataSelection/testOpDataSelection.py
Class Name: TestOpDataSelection_FakeDataReader
Method Name: test_real_data_source


Project Name: ilastik/ilastik
Commit Name: e630df418745107ae3ff13d55c06aac050d7626d
Time: 2019-07-26
Author: tomaz.vieira@embl.de
File Name: tests/test_applets/dataSelection/testOpDataSelection.py
Class Name: TestOpDataSelection_Basic_native_3D
Method Name: test3DProjectLocalData