Build: #19 failed

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

CAs 3258: Test case result

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

Error Log

FileNotFoundError: [Errno 2] No such file or directory: 'CAS-3258.txt'
self = <test_tool_regionmanager.rg_fromtextfile_test testMethod=test_CAS_3258>

    def test_CAS_3258(self):
        """Verify fix to CAS-3258"""
        self.ia.fromshape("", [250, 250])
>       self._testit(self.cas_3258t, self.cas_3258r)

../../../casatools/tests/tools/regionmanager/test_tool_regionmanager.py:649: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <test_tool_regionmanager.rg_fromtextfile_test testMethod=test_CAS_3258>
text = 'CAS-3258.txt', rgn = 'CAS-3258.rgn'

    def _testit(self, text, rgn):
        csys = self.ia.coordsys().torecord()
        shape = self.ia.shape()
        got = self.rg.fromtextfile(text, shape, csys)
        expected = self.rg.fromfiletorecord(rgn)
        expected['comment'] = ""
        self.assertTrue(deep_equality(got, expected))
    
>       f = open(text, 'r')
E       FileNotFoundError: [Errno 2] No such file or directory: 'CAS-3258.txt'

../../../casatools/tests/tools/regionmanager/test_tool_regionmanager.py:628: FileNotFoundError