DMSC Integration Testing

Last updated: September 25, 2026 08:02:48

Test: nexusfiles-scipp|odin|odin_read_detector_data|orca

View job log here


KeyError: 'histogram_mode_detectors'
In provider ess.reduce.nexus.workflow.load_nexus_data(
    location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f815211a2a0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00022385.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f8153b95440>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
>       result = workflow.compute(NeXusData[NXdetector, SampleRun])
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:82: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/pipeline.py:191: in compute
    return self.get(tp, **kwargs).compute(reporter=reporter)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/task_graph.py:122: in compute
    return self._scheduler.get(self._graph, [targets], reporter=reporter)[0]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/scheduler.py:140: in get
    return self._dask_get(dsk, list(map(_to_dask_key, keys)))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/threaded.py:115: in get
    results = get_async(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:547: in get_async
    raise_exception(exc, tb)
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:351: in reraise
    raise exc
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:256: in execute_task
    result = task(data)
             ^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/_task_spec.py:768: in __call__
    return self.func(*new_argspec)
           ^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/utils.py:81: in apply
    return func(*args)
           ^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/_provider.py:145: in __call__
    return self._func(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/workflow.py:279: in load_nexus_data
    nexus.load_data(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/_nexus_loader.py:560: in load_data
    component = instrument[component_name]
                ^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:367: in __getitem__
    return self[grp][sel_path.relative_to(grp).as_posix()]
           ^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <scippnexus.base.Group object at 0x7f8152285970>
sel = 'histogram_mode_detectors'

    def __getitem__(self, sel):
        """
        Get a child group or child dataset, a selection of child groups, or load and
        return the current group.
    
        Three cases are supported:
    
        - String name: The child group or child dataset of that name is returned.
        - Class such as ``NXdata`` or ``NXlog``: A dict containing all direct children
          with a matching ``NX_class`` attribute are returned. Also accepts a tuple of
          classes. ``Field`` selects all child fields, i.e., all datasets but not
          groups.
        - Scipp-style index: Load the specified slice of the current group, returning
          a :class:`scipp.DataArray` or :class:`scipp.DataGroup`.
    
        Parameters
        ----------
        sel:
            Child name, class, or index.
    
        Returns
        -------
        :
            Field, group, dict of fields, or loaded data.
        """
        if isinstance(sel, str):
            # We cannot get the child directly from the HDF5 group, since we need to
            # create the parent group, to ensure that fields get the correct properties
            # such as sizes and dtype.
            if '/' in sel:
                sel_path = PurePosixPath(sel)
                if sel_path.is_absolute():
                    return self.file[sel_path.relative_to('/').as_posix()]
                # If the path is a single name, we can directly access the child
                elif len(sel_path.parts) == 1:
                    return self[sel_path.as_posix()]
                else:
                    grp = sel_path.parts[0]
                    return self[grp][sel_path.relative_to(grp).as_posix()]
            elif sel == '..':
                return self.parent
>           child = self._children[sel]
                    ^^^^^^^^^^^^^^^^^^^
E           KeyError: 'histogram_mode_detectors'
E           In provider ess.reduce.nexus.workflow.load_nexus_data(
E               location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
E           ) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError

View job log here


KeyError: 'histogram_mode_detectors'
In provider ess.reduce.nexus.workflow.load_nexus_data(
    location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f7a93004620>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00022255.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f7a948f9440>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
>       result = workflow.compute(NeXusData[NXdetector, SampleRun])
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:82: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/pipeline.py:191: in compute
    return self.get(tp, **kwargs).compute(reporter=reporter)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/task_graph.py:122: in compute
    return self._scheduler.get(self._graph, [targets], reporter=reporter)[0]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/scheduler.py:140: in get
    return self._dask_get(dsk, list(map(_to_dask_key, keys)))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/threaded.py:115: in get
    results = get_async(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:547: in get_async
    raise_exception(exc, tb)
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:351: in reraise
    raise exc
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:256: in execute_task
    result = task(data)
             ^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/_task_spec.py:768: in __call__
    return self.func(*new_argspec)
           ^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/utils.py:81: in apply
    return func(*args)
           ^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/_provider.py:145: in __call__
    return self._func(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/workflow.py:279: in load_nexus_data
    nexus.load_data(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/_nexus_loader.py:560: in load_data
    component = instrument[component_name]
                ^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:367: in __getitem__
    return self[grp][sel_path.relative_to(grp).as_posix()]
           ^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <scippnexus.base.Group object at 0x7f7a93023500>
sel = 'histogram_mode_detectors'

    def __getitem__(self, sel):
        """
        Get a child group or child dataset, a selection of child groups, or load and
        return the current group.
    
        Three cases are supported:
    
        - String name: The child group or child dataset of that name is returned.
        - Class such as ``NXdata`` or ``NXlog``: A dict containing all direct children
          with a matching ``NX_class`` attribute are returned. Also accepts a tuple of
          classes. ``Field`` selects all child fields, i.e., all datasets but not
          groups.
        - Scipp-style index: Load the specified slice of the current group, returning
          a :class:`scipp.DataArray` or :class:`scipp.DataGroup`.
    
        Parameters
        ----------
        sel:
            Child name, class, or index.
    
        Returns
        -------
        :
            Field, group, dict of fields, or loaded data.
        """
        if isinstance(sel, str):
            # We cannot get the child directly from the HDF5 group, since we need to
            # create the parent group, to ensure that fields get the correct properties
            # such as sizes and dtype.
            if '/' in sel:
                sel_path = PurePosixPath(sel)
                if sel_path.is_absolute():
                    return self.file[sel_path.relative_to('/').as_posix()]
                # If the path is a single name, we can directly access the child
                elif len(sel_path.parts) == 1:
                    return self[sel_path.as_posix()]
                else:
                    grp = sel_path.parts[0]
                    return self[grp][sel_path.relative_to(grp).as_posix()]
            elif sel == '..':
                return self.parent
>           child = self._children[sel]
                    ^^^^^^^^^^^^^^^^^^^
E           KeyError: 'histogram_mode_detectors'
E           In provider ess.reduce.nexus.workflow.load_nexus_data(
E               location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
E           ) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError

View job log here


KeyError: 'histogram_mode_detectors'
In provider ess.reduce.nexus.workflow.load_nexus_data(
    location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f0061b516a0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00022115.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f0064059620>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
>       result = workflow.compute(NeXusData[NXdetector, SampleRun])
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:90: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/pipeline.py:191: in compute
    return self.get(tp, **kwargs).compute(reporter=reporter)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/task_graph.py:122: in compute
    return self._scheduler.get(self._graph, [targets], reporter=reporter)[0]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/scheduler.py:140: in get
    return self._dask_get(dsk, list(map(_to_dask_key, keys)))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/threaded.py:115: in get
    results = get_async(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:547: in get_async
    raise_exception(exc, tb)
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:351: in reraise
    raise exc
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:256: in execute_task
    result = task(data)
             ^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/_task_spec.py:768: in __call__
    return self.func(*new_argspec)
           ^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/utils.py:81: in apply
    return func(*args)
           ^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/_provider.py:145: in __call__
    return self._func(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/workflow.py:279: in load_nexus_data
    nexus.load_data(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/_nexus_loader.py:560: in load_data
    component = instrument[component_name]
                ^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:367: in __getitem__
    return self[grp][sel_path.relative_to(grp).as_posix()]
           ^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <scippnexus.base.Group object at 0x7f0061a04f20>
sel = 'histogram_mode_detectors'

    def __getitem__(self, sel):
        """
        Get a child group or child dataset, a selection of child groups, or load and
        return the current group.
    
        Three cases are supported:
    
        - String name: The child group or child dataset of that name is returned.
        - Class such as ``NXdata`` or ``NXlog``: A dict containing all direct children
          with a matching ``NX_class`` attribute are returned. Also accepts a tuple of
          classes. ``Field`` selects all child fields, i.e., all datasets but not
          groups.
        - Scipp-style index: Load the specified slice of the current group, returning
          a :class:`scipp.DataArray` or :class:`scipp.DataGroup`.
    
        Parameters
        ----------
        sel:
            Child name, class, or index.
    
        Returns
        -------
        :
            Field, group, dict of fields, or loaded data.
        """
        if isinstance(sel, str):
            # We cannot get the child directly from the HDF5 group, since we need to
            # create the parent group, to ensure that fields get the correct properties
            # such as sizes and dtype.
            if '/' in sel:
                sel_path = PurePosixPath(sel)
                if sel_path.is_absolute():
                    return self.file[sel_path.relative_to('/').as_posix()]
                # If the path is a single name, we can directly access the child
                elif len(sel_path.parts) == 1:
                    return self[sel_path.as_posix()]
                else:
                    grp = sel_path.parts[0]
                    return self[grp][sel_path.relative_to(grp).as_posix()]
            elif sel == '..':
                return self.parent
>           child = self._children[sel]
                    ^^^^^^^^^^^^^^^^^^^
E           KeyError: 'histogram_mode_detectors'
E           In provider ess.reduce.nexus.workflow.load_nexus_data(
E               location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
E           ) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError

View job log here


KeyError: 'histogram_mode_detectors'
In provider ess.reduce.nexus.workflow.load_nexus_data(
    location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f7bb7bde5d0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00021975.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f7bba40d1c0>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
>       result = workflow.compute(NeXusData[NXdetector, SampleRun])
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:90: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/pipeline.py:191: in compute
    return self.get(tp, **kwargs).compute(reporter=reporter)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/task_graph.py:122: in compute
    return self._scheduler.get(self._graph, [targets], reporter=reporter)[0]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/scheduler.py:140: in get
    return self._dask_get(dsk, list(map(_to_dask_key, keys)))
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/threaded.py:115: in get
    results = get_async(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:547: in get_async
    raise_exception(exc, tb)
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:351: in reraise
    raise exc
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/local.py:256: in execute_task
    result = task(data)
             ^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/_task_spec.py:768: in __call__
    return self.func(*new_argspec)
           ^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dask/utils.py:81: in apply
    return func(*args)
           ^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/sciline/_provider.py:145: in __call__
    return self._func(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/workflow.py:279: in load_nexus_data
    nexus.load_data(
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/ess/reduce/nexus/_nexus_loader.py:560: in load_data
    component = instrument[component_name]
                ^^^^^^^^^^^^^^^^^^^^^^^^^^
.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:367: in __getitem__
    return self[grp][sel_path.relative_to(grp).as_posix()]
           ^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <scippnexus.base.Group object at 0x7f7bb7c8d070>
sel = 'histogram_mode_detectors'

    def __getitem__(self, sel):
        """
        Get a child group or child dataset, a selection of child groups, or load and
        return the current group.
    
        Three cases are supported:
    
        - String name: The child group or child dataset of that name is returned.
        - Class such as ``NXdata`` or ``NXlog``: A dict containing all direct children
          with a matching ``NX_class`` attribute are returned. Also accepts a tuple of
          classes. ``Field`` selects all child fields, i.e., all datasets but not
          groups.
        - Scipp-style index: Load the specified slice of the current group, returning
          a :class:`scipp.DataArray` or :class:`scipp.DataGroup`.
    
        Parameters
        ----------
        sel:
            Child name, class, or index.
    
        Returns
        -------
        :
            Field, group, dict of fields, or loaded data.
        """
        if isinstance(sel, str):
            # We cannot get the child directly from the HDF5 group, since we need to
            # create the parent group, to ensure that fields get the correct properties
            # such as sizes and dtype.
            if '/' in sel:
                sel_path = PurePosixPath(sel)
                if sel_path.is_absolute():
                    return self.file[sel_path.relative_to('/').as_posix()]
                # If the path is a single name, we can directly access the child
                elif len(sel_path.parts) == 1:
                    return self[sel_path.as_posix()]
                else:
                    grp = sel_path.parts[0]
                    return self[grp][sel_path.relative_to(grp).as_posix()]
            elif sel == '..':
                return self.parent
>           child = self._children[sel]
                    ^^^^^^^^^^^^^^^^^^^
E           KeyError: 'histogram_mode_detectors'
E           In provider ess.reduce.nexus.workflow.load_nexus_data(
E               location: ess.reduce.nexus.types.NeXusDataLocationSpec[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun],
E           ) -> ess.reduce.nexus.types.NeXusData[scippnexus.nxdetector.NXdetector, ess.reduce.nexus.types.SampleRun]

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/scippnexus/base.py:370: KeyError

View job log here


Test passed, nothing to report

View job log here


Test passed, nothing to report

View job log here


Test passed, nothing to report

View job log here


Test passed, nothing to report

View job log here


Test passed, nothing to report

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f83a1d73b90>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00020415.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f83a411b2e0>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:92: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f4fc2f22810>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00020275.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f4fc3d29300>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:92: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fecda38a5d0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00020202.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fecdde03a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:92: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fbacb67b710>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00020202.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fbacf30fa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f3a8114f830>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00020114.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f3a84c9fa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f9e22c83680>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00019971.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f9e2680ba60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fb17bd1bc80>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00019453.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fb17f9c7a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f9bb6222de0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00019453.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f9bb9f0fa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fbdc44e9fd0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00019373.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fbdc810fa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fa6398c7fb0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00019227.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fa63d4bfa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f21a43d5ca0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00019096.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f21a7f13a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f4e51fc5910>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018956.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f4e55be3a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f8f569273b0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018816.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f8f5a4a7a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fce13a9d9a0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018676.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fce175c3a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fd2e1a77ce0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018332.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fd2e509fa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f99d62fc1a0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018332.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f99e9003a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f4dc039abd0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018332.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f4dd5497a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f8d9db6e810>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018252.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f8da11cfa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7ffa4b870ef0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00018122.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7ffa572d3a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fe2c2e2f800>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017982.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fe2d96a3a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f5bd9ef8ad0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017745.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f5be71c7a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f6271c44fe0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017657.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f627d8afa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fa9f139f740>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017547.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7faa05df7a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fa55429cbc0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017397.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fa561a1ba60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f82f7f95ac0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017257.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f8304a97a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f616c2c3920>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00017127.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f618088ba60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f9793f2f0b0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00016977.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f97a532ba60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f76be27ad50>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00016707.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f76cc5c7a60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f27cc568bf0>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00016557.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f27cfc8ba60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f2ec3b14f80>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00016427.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f2ecdeafa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f34e17cb020>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00016287.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f34f79dfa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7f0371c14710>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00016137.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7f0381ccfa60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError

View job log here


assert 0 > 0
 +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError
Full output
workflow = <sciline.pipeline.Pipeline object at 0x7fbe090c3a40>
coda_nexus_file_path = PosixPath('/ess/data/coda/999999/raw/coda_odin_999999_00015997.hdf')
check_detector_histogram = <function _check_detector_histogram at 0x7fbe1970ba60>

    def test_odin_read_detector_data__orca(
        workflow: sciline.Pipeline,
        coda_nexus_file_path: Path,
        check_detector_histogram: Callable,
    ) -> None:
        workflow[Filename[SampleRun]] = coda_nexus_file_path
        workflow[NeXusDetectorName] = "histogram_mode_detectors/orca"
    
        result = workflow.compute(NeXusData[NXdetector, SampleRun])
    
>       check_detector_histogram(result)

tests/nexusfiles-scipp/odin/odin_load_nexus_test.py:91: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

da = <scipp.DataArray>
Dimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]
Coordinates:
* time           ...s]  (time)  []
Data:
                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []



    def _check_detector_histogram(da: sc.DataArray) -> None:
        assert "time" in da.dims
        assert da.ndim > 1
>       assert da.size > 0
E       assert 0 > 0
E        +  where 0 = <scipp.DataArray>\nDimensions: Sizes[time:0, x_pixel_offset:2048, y_pixel_offset:2048, ]\nCoordinates:\n* time                    datetime64             [ns]  (time)  []\nData:\n                              int32  [dimensionless]  (time, x_pixel_offset, y_pixel_offset)  []\n\n.size

.tox/nexusfiles-scipp-odin/lib/python3.12/site-packages/dmsc_nightly/testing/nexusfiles/validation_fixtures.py:31: AssertionError