Build: #19 failed

Job: Test Tools MPI Many Linux 2.28 Rocky 8.10 Py3.10 failed

ellipse: Test case result

The below summarizes the result of the test " ellipse" in build 19 of CASA - CMake MPI - Test Tools MPI Many Linux 2.28 Rocky 8.10 Py3.10.
Description
ellipse
Test class
tests.tools.regionmanager.test_tool_regionmanager.rg_fromtextfile_test
Method
test_ellipse
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

FileNotFoundError: [Errno 2] No such file or directory: 'Cir_X-1_sci.spw37.mfs.I.manual.fits'
self = <test_tool_regionmanager.rg_fromtextfile_test testMethod=test_ellipse>

    def setUp(self):
        for im in self._fixtures:
            shutil.copy(datapath + im, im)
>       shutil.copy(datapath + self.cas_12980i, self.cas_12980i)

../../../casatools/tests/tools/regionmanager/test_tool_regionmanager.py:603: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/shutil.py:418: in copy
    copymode(src, dst, follow_symlinks=follow_symlinks)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

src = '/opt/casa/data/casatestdata/unittest/rgtool/Cir_X-1_sci.spw37.mfs.I.manual.fits'
dst = 'Cir_X-1_sci.spw37.mfs.I.manual.fits'

    def copymode(src, dst, *, follow_symlinks=True):
        """Copy mode bits from src to dst.
    
        If follow_symlinks is not set, symlinks aren't followed if and only
        if both `src` and `dst` are symlinks.  If `lchmod` isn't available
        (e.g. Linux) this method does nothing.
    
        """
        sys.audit("shutil.copymode", src, dst)
    
        if not follow_symlinks and _islink(src) and os.path.islink(dst):
            if hasattr(os, 'lchmod'):
                stat_func, chmod_func = os.lstat, os.lchmod
            else:
                return
        else:
            stat_func, chmod_func = _stat, os.chmod
    
        st = stat_func(src)
>       chmod_func(dst, stat.S_IMODE(st.st_mode))
E       FileNotFoundError: [Errno 2] No such file or directory: 'Cir_X-1_sci.spw37.mfs.I.manual.fits'

/usr/local/lib/python3.10/shutil.py:307: FileNotFoundError