Build: #19 failed

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

poly 2000: Test case result

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

Error Log

FileNotFoundError: [Errno 2] No such file or directory: 'imregion.fits'
self = <test_tool_regionmanager.rg_fromtextfile_test testMethod=test_poly_2000>

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

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

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

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