Build: #3 failed

Job: Build and Package ManyLinux 2014 failed

Stages & jobs

  1. Default Stage

1 applycal fluxscale gcal bcal: Test case result

The below summarizes the result of the test "1 applycal fluxscale gcal bcal" in build 3 of CASA - CMake MPI - Build and Package ManyLinux 2014.
Description
1 applycal fluxscale gcal bcal
Test class
src.casampi.tests.test_casampi.test_mpi_applycal
Method
test1_applycal_fluxscale_gcal_bcal
Duration
1 sec
Status
Failed (New Failure)

Error Log

RuntimeError: Table /home/casatest/ngc5921.fluxscale does not exist
self = <casampi.tests.test_casampi.test_mpi_applycal testMethod=test1_applycal_fluxscale_gcal_bcal>

    def setUp(self):
    
        # Set-up MMS
        self.vis = "ngc5921.applycal.mms"
        self.vis_sorted = "ngc5921.applycal.sorted.mms"
        setUpFile(self.vis,'vis')
    
        # Set-up reference MMS
        self.ref = "ngc5921.applycal.ms"
        self.ref_sorted = "ngc5921.applycal.sorted.ms"
        setUpFile(self.ref,'ref')
    
        # Set-up auxiliary files
        self.aux = ["ngc5921.fluxscale", "ngc5921.gcal", "ngc5921.bcal"]
        setUpFile(self.aux ,'aux')
    
        # Repository caltables are pre-v4.1, and we
        # must update them _before_ applycal to avoid contention
        casalog.post("Updating pre-v4.1 caltables: %s" % str(self.aux),"WARN","test1_applycal_fluxscale_gcal_bcal")
        cblocal = calibrater()
        for oldct in self.aux:
>           cblocal.updatecaltable(oldct)

/casampi/src/casampi/tests/test_casampi.py:1629: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/site-packages/casatools/calibrater.py:1004: in updatecaltable
    return self._swigobj.updatecaltable(caltable)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <casatools.__casac__.calibrater.calibrater; proxy of <Swig Object of type 'casac::calibrater *' at 0x7f90c1a34db0> >
args = ('ngc5921.fluxscale',), kwargs = {}

    def updatecaltable(self, *args, **kwargs):
        r"""
        updatecaltable(self, _caltable=string("")) -> bool
    
    
        Summary:
            Caltable modernizer.
    
        Description:
    
    
        This method can be used to update a caltable (from v3.4 or later)
        to the current version of CASA.
    
        The following updates are currently supported.
    
        o At CASA v4.1.0, the OBSERVATION subtable and OBSERVATION_ID column
        were added to caltables.  This method adds trivial versions of
        these elements to pre-v4.1 caltables.
    
        Input Parameters:
            caltable                  Name of the caltable.
    
        Example:
    
        cb.updatecaltable('mycaltable');
    
        --------------------------------------------------------------------------------
    
        """
>       return _calibrater.calibrater_updatecaltable(self, *args, **kwargs)
E       RuntimeError: Table /home/casatest/ngc5921.fluxscale does not exist

/usr/local/lib/python3.8/site-packages/casatools/__casac__/calibrater.py:2150: RuntimeError