Build: #3 failed
Job: Build and Package ManyLinux 2014 failed
py parallel imager helper interface: Test case result
The below summarizes the result of the test " py parallel imager helper interface" in build 3 of CASA - CMake MPI - Build and Package ManyLinux 2014.
- Description
- py parallel imager helper interface
- Test class
- src.casampi.tests.test_casampi.test_0_MPIInterface
- Method
- test_PyParallelImagerHelper_interface
- Duration
- < 1 sec
- Status
- Failed (New Failure)
Error Log
Exception: MPI is not enabled
self = <casampi.tests.test_casampi.test_0_MPIInterface testMethod=test_PyParallelImagerHelper_interface>
def setUp(self):
MPIInterface.set_log_mode('redirect')
> self.sc = MPIInterface.getCluster()
/casampi/src/casampi/tests/test_casampi.py:1187:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/casampi/src/casampi/MPIInterface.py:314: in getCluster
cluster = MPIInterface()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <casampi.MPIInterface.MPIInterface object at 0x7f90c16d6190>
def __init__(self):
""" Create MPIInterface singleton instance """
casalog_call_origin = "MPIInterface::__init__"
# Check if MPI is effectively enabled
if not MPIEnvironment.is_mpi_enabled:
msg = "MPI is not enabled"
casalog.post(msg,"SEVERE",casalog_call_origin)
> raise Exception(msg)
E Exception: MPI is not enabled
/casampi/src/casampi/MPIInterface.py:276: Exception