Build: #19 failed

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

axesmap: Test case result

The below summarizes the result of the test " axesmap" in build 19 of CASA - CMake MPI - Test Tools MPI Many Linux 2.28 Rocky 8.10 Py3.10.
Description
axesmap
Test class
tests.tools.coordsys.test_tool_coordsys.coordsys_test
Method
test_axesmap
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

FileNotFoundError: [Errno 2] No such file or directory: 'center_0.fits'
self = <test_tool_coordsys.coordsys_test testMethod=test_axesmap>

    def setUp(self):
>       shutil.copy(ctsys.resolve(datapath + myim), myim)

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

src = '/opt/casa/data/casatestdata/unittest/coordsys/center_0.fits'
dst = 'center_0.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: 'center_0.fits'

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