Skip to content

Conversation

@pyansys-ci-bot
Copy link
Collaborator

An update of generated code has been triggered either manually or by an update in the dpf-standalone repository.

@pyansys-ci-bot pyansys-ci-bot requested a review from a team as a code owner December 11, 2025 17:21
@pyansys-ci-bot pyansys-ci-bot added the server-sync DO NOT USE, Related to automatic synchronization with the server label Dec 11, 2025
@codecov
Copy link

codecov bot commented Dec 11, 2025

❌ 27 Tests Failed:

Tests completed Failed Passed Skipped
2093 27 2066 68
View the top 3 failed test(s) by shortest run time
tests\operators\test_coordinate_system.py::operators::test_coordinate_system::test_operator_coordinate_system_rst[in Process CLayer]
Stack Traces | 0.005s run time
server_type = <ansys.dpf.core.server_types.InProcessServer object at 0x000001FCA4913DC0>

    def test_operator_coordinate_system_rst(server_type):
        model = dpf.Model(examples.download_hemisphere(server=server_type), server=server_type)
>       cs = dpf.operators.result.coordinate_system(server=server_type)

tests\operators\test_coordinate_system.py:33: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\result\coordinate_system.py:80: in __init__
    raise e
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\result\coordinate_system.py:75: in __init__
    super().__init__(name="CS", config=config, server=server)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:189: in __init__
    self._internal_obj = self._api.operator_new(self.name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'CS'

    @staticmethod
    def operator_new(operatorName):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new(utils.to_char_ptr(operatorName), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-operators\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:26: DPFServerException
tests\operators\test_coordinate_system.py::operators::test_coordinate_system::test_operator_coordinate_system_rst[ansys-grpc-dpf]
Stack Traces | 0.009s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x000001FCA4AFDBA0>

    def test_operator_coordinate_system_rst(server_type):
        model = dpf.Model(examples.download_hemisphere(server=server_type), server=server_type)
>       cs = dpf.operators.result.coordinate_system(server=server_type)

tests\operators\test_coordinate_system.py:33: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\result\coordinate_system.py:80: in __init__
    raise e
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\result\coordinate_system.py:75: in __init__
    super().__init__(name="CS", config=config, server=server)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = ('CS', <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x000001FCA4AFDBA0>)
kwargs = {}, _InactiveRpcError = <class 'grpc._channel._InactiveRpcError'>
_MultiThreadedRendezvous = <class 'grpc._channel._MultiThreadedRendezvous'>
details = ' License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the serv...on about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture gRPC exceptions."""
        from grpc._channel import _InactiveRpcError, _MultiThreadedRendezvous
        try:
            out = func(*args, **kwargs)
        except (_InactiveRpcError, _MultiThreadedRendezvous) as error:
            details = error.details()
            if "object is null in the dataBase" in details:
                raise DPFServerNullObject(details) from None
            elif "Unable to open the following file" in details:
                raise DPFServerException(
                    "The result file could not be found or could not be opened, the server raised an error message: \n" + details) from None
>           raise DPFServerException(details) from None
E           ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-operators\lib\site-packages\ansys\dpf\gate\errors.py:60: DPFServerException
tests\operators\test_coordinate_system.py::operators::test_coordinate_system::test_operator_coordinate_system_rst[gRPC CLayer]
Stack Traces | 0.009s run time
server_type = <ansys.dpf.core.server_types.GrpcServer object at 0x000001FCA7153AF0>

    def test_operator_coordinate_system_rst(server_type):
        model = dpf.Model(examples.download_hemisphere(server=server_type), server=server_type)
>       cs = dpf.operators.result.coordinate_system(server=server_type)

tests\operators\test_coordinate_system.py:33: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\result\coordinate_system.py:80: in __init__
    raise e
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\result\coordinate_system.py:75: in __init__
    super().__init__(name="CS", config=config, server=server)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'CS'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x000001FCA717CA30>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-operators\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
test_local_server\test_local_server.py::test_local_server::test_dot_operator_server_field
Stack Traces | 0.019s run time
local_server = <ansys.dpf.core.server_types.GrpcServer object at 0x0000022403904F40>

    def test_dot_operator_server_field(local_server):
        field = dpf.core.fields_factory.create_3d_vector_field(2, server=local_server)
        field.data = [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
        field.scoping.ids = [1, 2]
    
        # field * op
        forward = ops.utility.forward_field(field, server=local_server)
>       add = field * forward

test_local_server\test_local_server.py:94: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-local_server\lib\site-packages\ansys\dpf\core\field.py:850: in __mul__
    op = operators.math.generalized_inner_product(server=self._server)
.tox\test-local_server\lib\site-packages\ansys\dpf\core\operators\math\generalized_inner_product.py:64: in __init__
    super().__init__(
.tox\test-local_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'generalized_inner_product'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x00000224055FB9D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-local_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
test_local_server\test_local_server.py::test_local_server::test_minus_operator_server_field
Stack Traces | 0.021s run time
local_server = <ansys.dpf.core.server_types.GrpcServer object at 0x0000022403904F40>

    def test_minus_operator_server_field(local_server):
        field = dpf.core.fields_factory.create_3d_vector_field(2, server=local_server)
        field.data = [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
        field.scoping.ids = [1, 2]
    
        # field-op
        forward = ops.utility.forward_field(field, server=local_server)
>       add = field - forward

test_local_server\test_local_server.py:65: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-local_server\lib\site-packages\ansys\dpf\core\field.py:868: in __sub__
    op = operators.math.minus(server=self._server)
.tox\test-local_server\lib\site-packages\ansys\dpf\core\operators\math\minus.py:66: in __init__
    super().__init__(
.tox\test-local_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'minus'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x00000224055FB9D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-local_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
test_local_server\test_local_server.py::test_local_server::test_minus_operator_server_fields_container
Stack Traces | 0.024s run time
local_server = <ansys.dpf.core.server_types.GrpcServer object at 0x0000022403904F40>

    def test_minus_operator_server_fields_container(local_server):
        field = dpf.core.fields_factory.create_3d_vector_field(2, server=local_server)
        field.data = [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
        field.scoping.ids = [1, 2]
    
        fc = dpf.core.fields_container_factory.over_time_freq_fields_container(
            [field, field], server=local_server
        )
    
        # operator with field out
        forward = ops.utility.forward_field(field, server=local_server)
>       add = fc - forward

test_local_server\test_local_server.py:277: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-local_server\lib\site-packages\ansys\dpf\core\fields_container.py:717: in __sub__
    op = operators.math.minus_fc(server=self._server)
.tox\test-local_server\lib\site-packages\ansys\dpf\core\operators\math\minus_fc.py:72: in __init__
    super().__init__(
.tox\test-local_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'minus_fc'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x00000224055FB9D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-local_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
test_local_server\test_local_server.py::test_local_server::test_dot_operator_server_fields_container
Stack Traces | 0.025s run time
local_server = <ansys.dpf.core.server_types.GrpcServer object at 0x0000022403904F40>

    def test_dot_operator_server_fields_container(local_server):
        field = dpf.core.fields_factory.create_3d_vector_field(2, server=local_server)
        field.data = [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
        field.scoping.ids = [1, 2]
    
        fc = dpf.core.fields_container_factory.over_time_freq_fields_container(
            [field, field], server=local_server
        )
    
        # fc * op
        forward = ops.utility.forward_field(field, server=local_server)
>       add = fc * forward

test_local_server\test_local_server.py:311: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-local_server\lib\site-packages\ansys\dpf\core\fields_container.py:748: in __mul__
    op = operators.math.generalized_inner_product_fc(server=self._server)
.tox\test-local_server\lib\site-packages\ansys\dpf\core\operators\math\generalized_inner_product_fc.py:70: in __init__
    super().__init__(
.tox\test-local_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'generalized_inner_product_fc'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x00000224055FB9D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-local_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
test_local_server\test_local_server.py::test_local_server::test_add_operator_server_fields_container
Stack Traces | 0.026s run time
local_server = <ansys.dpf.core.server_types.GrpcServer object at 0x0000022403904F40>

    def test_add_operator_server_fields_container(local_server):
        field = dpf.core.fields_factory.create_3d_vector_field(2, server=local_server)
        field.data = [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
        field.scoping.ids = [1, 2]
    
        fc = dpf.core.fields_container_factory.over_time_freq_fields_container(
            [field, field], server=local_server
        )
    
        # operator with field out
        forward = ops.utility.forward_field(field, server=local_server)
>       add = fc + forward

test_local_server\test_local_server.py:243: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-local_server\lib\site-packages\ansys\dpf\core\fields_container.py:700: in __add__
    op = operators.math.add_fc(self, fields_b, server=self._server)
.tox\test-local_server\lib\site-packages\ansys\dpf\core\operators\math\add_fc.py:65: in __init__
    super().__init__(
.tox\test-local_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'add_fc'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x00000224055FB9D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-local_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
tests\operators\test_operator_mesh_plan_clip.py::operators::test_operator_mesh_plan_clip::test_operator_mesh_plan_clip_rst
Stack Traces | 0.034s run time
simple_bar = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-operators\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\ASimpleBar.rst'

    @pytest.mark.skipif(
        not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_5_0,
        reason="Mesh clip plan operator not functional before 5.0,",
    )
    def test_operator_mesh_plan_clip_rst(simple_bar):
        model = dpf.Model(simple_bar)
        main_mesh = model.metadata.meshed_region
    
        plane = dpf.fields_factory.create_3d_vector_field(1, dpf.locations.overall)
        plane.append([0, 1, 0], 1)
    
        origin = dpf.fields_factory.create_3d_vector_field(1, dpf.locations.overall)
        origin.append([0, 2.0, 0], 1)
    
>       cut_mesh = dpf.operators.mesh.mesh_plan_clip(main_mesh, normal=plane, origin=origin).eval(2)

tests\operators\test_operator_mesh_plan_clip.py:43: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\operators\mesh\mesh_plan_clip.py:70: in __init__
    super().__init__(
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:189: in __init__
    self._internal_obj = self._api.operator_new(self.name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'mesh_plan_clip'

    @staticmethod
    def operator_new(operatorName):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new(utils.to_char_ptr(operatorName), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-operators\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:26: DPFServerException
tests\operators\test_operator_elemental_mass.py::operators::test_operator_elemental_mass::test_operator_elemental_mass_rst
Stack Traces | 0.204s run time
allkindofcomplexity = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-operators\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\testing\\allKindOfComplexity.rst'

    @pytest.mark.skipif(
        not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_8_2,
        reason="Elemental mass operator not functional before 8.2,",
    )
    def test_operator_elemental_mass_rst(allkindofcomplexity):
        model = dpf.Model(allkindofcomplexity)
        op = dpf.operators.result.elemental_mass(data_sources=model)
>       fc = op.eval()

tests\operators\test_operator_elemental_mass.py:36: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:850: in eval
    return self.outputs._outputs[0]()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:108: in __call__
    return self.get_data()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:85: in get_data
    output = self._operator.get_output(self._pin, type_output)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.operators.result.elemental_mass.elemental_mass object at 0x000001FCA14E7C10>
iOutput = 0

    @staticmethod
    def operator_getoutput_fields_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_FieldsContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     ElementalMass:195<-mapdl::rst::ElementalMass:204

.tox\test-operators\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:422: DPFServerException
tests\test_examples.py::test_examples::test_find_examples[ansys-grpc-dpf-complex_rst]
Stack Traces | 0.255s run time
example = 'complex_rst'
server_type_remote_process = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E7648400>

    @pytest.mark.parametrize(
        "example",
        list_examples,
    )
    def test_find_examples(example, server_type_remote_process):
        # get example by string, so we can parameterize it without breaking
        # collection
        server_type_remote_process.local_server = False
        func = getattr(globals()["examples"], "find_" + example)
>       path = func(server=server_type_remote_process)

tests\test_examples.py:145: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1742: in find_complex_rst
    return _download_file("result_files", "complex.rst", should_upload, server, return_local_path)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E7763D90>
fp = <http.client.HTTPResponse object at 0x00000245E7763DC0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E7760D00>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_datasources.py::test_datasources::test_namespace[ansys-grpc-dpf]
Stack Traces | 0.311s run time
allkindofcomplexity = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\testing\\allKindOfComplexity.rst'
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E772EEF0>

    @conftest.raises_for_servers_version_under("9.0")
    def test_namespace(allkindofcomplexity, server_type):
        data_sources = dpf.core.DataSources(allkindofcomplexity, server=server_type)
        assert data_sources.namespace(data_sources.result_key) == "mapdl"
    
>       cas_h5_file = examples.download_fluent_axial_comp(server=server_type)["cas"][0]

tests\test_datasources.py:184: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1262: in download_fluent_axial_comp
    _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E773EE30>
fp = <http.client.HTTPResponse object at 0x00000245E773EAD0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E773DF30>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\operators\test_change_shell_layers.py::operators::test_change_shell_layers::test_operator_change_shell_layers_connect_enum[in Process CLayer]
Stack Traces | 0.313s run time
server_type = <ansys.dpf.core.server_types.InProcessServer object at 0x000001FCA4913DC0>

    @pytest.mark.skipif(
        os.name == "posix",
        reason="Failure under investigation on Ubuntu (Issue #2424)",
    )
    def test_operator_change_shell_layers_connect_enum(server_type):
        model = dpf.Model(
            examples.download_all_kinds_of_complexity_modal(server=server_type), server=server_type
        )
    
        stress = model.results.stress()
        stress.inputs.requested_location.connect("Nodal")
    
        # Test connection through signature
        change_shell_layers = dpf.operators.utility.change_shell_layers(
            fields_container=stress, e_shell_layer=dpf.common.shell_layers.bottom, server=server_type
        )
>       _ = change_shell_layers.eval()

tests\operators\test_change_shell_layers.py:50: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:850: in eval
    return self.outputs._outputs[0]()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:108: in __call__
    return self.get_data()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:85: in get_data
    output = self._operator.get_output(self._pin, type_output)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.operators.utility.change_shell_layers.change_shell_layers object at 0x000001FCA4AFCC40>
iOutput = 0

    @staticmethod
    def operator_getoutput_fields_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_FieldsContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     change_shellLayers:137<-S:123

.tox\test-operators\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:422: DPFServerException
tests\test_datasources.py::test_datasources::test_set_resultpath_data_sources_h5[ansys-grpc-dpf]
Stack Traces | 0.337s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E772EEF0>

    def test_set_resultpath_data_sources_h5(server_type):
        from ansys.dpf.core import examples
    
>       cas_h5_file = examples.download_fluent_axial_comp(server=server_type)["cas"][0]

tests\test_datasources.py:87: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1262: in download_fluent_axial_comp
    _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E7758E50>
fp = <http.client.HTTPResponse object at 0x00000245E775B430>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E775BB50>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_datasources.py::test_datasources::test_setresultpath_data_sources_no_extension[ansys-grpc-dpf]
Stack Traces | 0.398s run time
@pytest.fixture()
    def d3plot_beam():
        """Resolve the path of the "d3plot_beam/d3plot" result file."""
>       return examples.download_d3plot_beam()[0]

tests\conftest.py:208: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:946: in download_d3plot_beam
    _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E75140A0>
fp = <http.client.HTTPResponse object at 0x00000245E7514730>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E7516CB0>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_cff.py::test_cff::test_results_fluent[ansys-grpc-dpf]
Stack Traces | 0.47s run time
fluent_mixing_elbow_steady_state = <function fluent_mixing_elbow_steady_state.<locals>.return_ds at 0x00000245E306C700>
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E772EEF0>

    @pytest.mark.skipif(
        not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_0,
        reason="CFF source operators where not supported before 7.0,",
    )
    def test_results_fluent(fluent_mixing_elbow_steady_state, server_type):
>       model = dpf.Model(fluent_mixing_elbow_steady_state(server=server_type), server=server_type)

tests\test_cff.py:92: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\conftest.py:278: in return_ds
    files = examples.download_fluent_mixing_elbow_steady_state(server=server)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1356: in download_fluent_mixing_elbow_steady_state
    "flprj": _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E773EE00>
fp = <http.client.HTTPResponse object at 0x00000245E773F460>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E773C0A0>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests/test_datasources.py::test_set_resultpath_data_sources_cff[ansys-grpc-dpf]
Stack Traces | 0.626s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x7f5bb428bc10>

    def test_set_resultpath_data_sources_cff(server_type):
        from ansys.dpf.core import examples
    
>       cas_h5_file = examples.download_cfx_heating_coil(server=server_type)["cas"]

tests/test_datasources.py:98: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
..../test-api/lib/python3.10.../core/examples/downloads.py:1590: in download_cfx_heating_coil
    "cas": _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7f5bb41242e0>
req = <urllib.request.Request object at 0x7f5bb395c910>
fp = <http.client.HTTPResponse object at 0x7f5bb395faf0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7f5bb395e560>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
tests/test_plotter.py::test_scoping_plot
Stack Traces | 0.651s run time
fluent_mixing_elbow_steady_state = <function fluent_mixing_elbow_steady_state.<locals>.return_ds at 0x7f9fdf1a6ef0>

    @pytest.mark.skipif(not HAS_PYVISTA, reason="This test requires pyvista")
    @pytest.mark.skipif(
        not SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_0,
        reason="cff::cas::meshes_provider requires DPF 24R1",
    )
    def test_scoping_plot(fluent_mixing_elbow_steady_state):
        mesh: core.MeshedRegion = core.operators.mesh.mesh_provider(
>           data_sources=fluent_mixing_elbow_steady_state()
        ).eval()

tests/test_plotter.py:994: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:278: in return_ds
    files = examples.download_fluent_mixing_elbow_steady_state(server=server)
..../test-api/lib/python3.10.../core/examples/downloads.py:1415: in download_fluent_mixing_elbow_steady_state
    _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7fa02249b8e0>
req = <urllib.request.Request object at 0x7f9fded37fd0>
fp = <http.client.HTTPResponse object at 0x7f9fded36440>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7f9fded34820>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
tests/test_examples.py::test_find_examples[gRPC CLayer-transient_therm]
Stack Traces | 0.659s run time
example = 'transient_therm'
server_type_remote_process = <ansys.dpf.core.server_types.GrpcServer object at 0x7f9ffc638610>

    @pytest.mark.parametrize(
        "example",
        list_examples,
    )
    def test_find_examples(example, server_type_remote_process):
        # get example by string, so we can parameterize it without breaking
        # collection
        server_type_remote_process.local_server = False
        func = getattr(globals()["examples"], "find_" + example)
>       path = func(server=server_type_remote_process)

tests/test_examples.py:145: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
..../test-api/lib/python3.10.../core/examples/downloads.py:1868: in find_transient_therm
    return _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7fa02249b8e0>
req = <urllib.request.Request object at 0x7fa031d84760>
fp = <http.client.HTTPResponse object at 0x7fa031d87ca0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7fa031d862f0>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
tests/test_plotter.py::test_scopings_container_plot
Stack Traces | 0.659s run time
fluent_mixing_elbow_steady_state = <function fluent_mixing_elbow_steady_state.<locals>.return_ds at 0x7f9fdf115c60>

    @pytest.mark.skipif(not HAS_PYVISTA, reason="This test requires pyvista")
    @pytest.mark.skipif(
        not SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_0,
        reason="cff::cas::meshes_provider requires DPF 24R1",
    )
    def test_scopings_container_plot(fluent_mixing_elbow_steady_state):
        mesh: core.MeshedRegion = core.operators.mesh.mesh_provider(
>           data_sources=fluent_mixing_elbow_steady_state()
        ).eval()

tests/test_plotter.py:1011: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:278: in return_ds
    files = examples.download_fluent_mixing_elbow_steady_state(server=server)
..../test-api/lib/python3.10.../core/examples/downloads.py:1415: in download_fluent_mixing_elbow_steady_state
    _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7fa02249b8e0>
req = <urllib.request.Request object at 0x7f9ffc8b50f0>
fp = <http.client.HTTPResponse object at 0x7f9ffc8b6830>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7f9ffc8b7e20>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
tests\test_cff.py::test_cff::test_cff_model[ansys-grpc-dpf]
Stack Traces | 0.829s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E772EEF0>
fluent_multi_species = <function fluent_multi_species.<locals>.return_ds at 0x00000245E2957F40>

    @pytest.mark.skipif(
        not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_0,
        reason="CFF source operators where not supported before 7.0,",
    )
    def test_cff_model(server_type, fluent_multi_species):
>       ds = fluent_multi_species(server_type)

tests\test_cff.py:34: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\conftest.py:188: in return_ds
    files = examples.download_fluent_multi_species(server=server)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:562: in download_fluent_multi_species
    "dat": _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E0BC4B20>
fp = <http.client.HTTPResponse object at 0x00000245E0BC5EA0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E0BC7C70>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_cff.py::test_cff::test_results_cfx[ansys-grpc-dpf]
Stack Traces | 1.05s run time
cfx_heating_coil = <function cfx_heating_coil.<locals>.return_ds at 0x00000245E2C09090>
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E772EEF0>

    @pytest.mark.skipif(
        not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_0,
        reason="CFF source operators where not supported before 7.0,",
    )
    def test_results_cfx(cfx_heating_coil, server_type):
>       model = dpf.Model(cfx_heating_coil(server=server_type), server=server_type)

tests\test_cff.py:60: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\conftest.py:323: in return_ds
    files = examples.download_cfx_heating_coil(server=server)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1590: in download_cfx_heating_coil
    "cas": _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E42F30A0>
fp = <http.client.HTTPResponse object at 0x00000245E42F35B0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E42F3160>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
test_documentation\test_documentation.py::test_documentation::test_generate_operators_doc_plugin_and_update
Stack Traces | 1.09s run time
tmp_path = WindowsPath('D:.../pydpf-core/pydpf-core/.tox.../pytest-of-unknown/pytest-0/test_generate_operators_doc_pl2')

    def test_generate_operators_doc_plugin_and_update(tmp_path: Path):
        specs_path = tmp_path / "operator-specifications"
        specs_path.mkdir()
        toc_path = tmp_path / "toc.yml"
        toc_string = r"""- name: Operator specifications
      items:
    
    - name: Changelog
      href: changelog/changelog.md"""
        with toc_path.open(mode="w") as ff:
            ff.write(toc_string)
        utility_path = specs_path / "utility"
        utility_path.mkdir()
        forward_update_path = utility_path / "forward_upd.md"
        test_string = r"""## Description
    
    Test update"""
        with forward_update_path.open(mode="w", encoding="utf-8") as ff:
            ff.write(test_string)
>       generate_operators_doc(
            ansys_path=dpf.SERVER.ansys_path,
            output_path=tmp_path,
            verbose=False,
            desired_plugin="core",
        )

test_documentation\test_documentation.py:65: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-documentation\lib\site-packages\ansys\dpf\core\documentation\generate_operators_doc.py:599: in generate_operators_doc
    router_info = get_operator_routing_info(server)
.tox\test-documentation\lib\site-packages\ansys\dpf\core\documentation\generate_operators_doc.py:552: in get_operator_routing_info
    dt_root: dpf.DataTree = dpf.dpf_operator.Operator(
.tox\test-documentation\lib\site-packages\ansys\dpf\core\dpf_operator.py:189: in __init__
    self._internal_obj = self._api.operator_new(self.name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'info::router_discovery'

    @staticmethod
    def operator_new(operatorName):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new(utils.to_char_ptr(operatorName), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-documentation\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:26: DPFServerException
src.ansys.dpf.core.plotter::core.plotter.plot_chart
Stack Traces | 2.16s run time
852     screenshot : path-like, optional
853         A file path to which the figure should be saved. The format is inferred from the file
854         extension in the path (defaults to ".png"). The default is ``None``.
855 
856 
857     Examples
858     --------
859     >>> from ansys.dpf import core as dpf
860     >>> from ansys.dpf.core import examples
861     >>> model = dpf.Model(examples.find_transient_therm())
UNEXPECTED EXCEPTION: <HTTPError 503: 'Service Unavailable'>
Traceback (most recent call last):
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\doctest.py", line 1350, in __run
    exec(compile(example.source, filename, "single",
  File "<doctest core.plotter.plot_chart[2]>", line 1, in <module>
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\site-packages\ansys\dpf\core\examples\downloads.py", line 1868, in find_transient_therm
    return _download_file(
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\site-packages\ansys\dpf\core\examples\downloads.py", line 116, in _download_file
    local_path = _retrieve_file(url, filename, directory)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\site-packages\ansys\dpf\core\examples\downloads.py", line 110, in _retrieve_file
    _, resp = urlretrieve(url, local_path)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 241, in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 216, in urlopen
    return opener.open(url, data, timeout)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 525, in open
    response = meth(req, response)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 634, in http_response
    response = self.parent.error(
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 563, in error
    return self._call_chain(*args)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 496, in _call_chain
    result = func(*args)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 643, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 503: Service Unavailable
D:\a\pydpf-core\pydpf-core\src\ansys\dpf\core\plotter.py:861: UnexpectedException
tests\test_cff.py::test_cff::test_cff_model_flprj[ansys-grpc-dpf]
Stack Traces | 6.29s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x00000245E772EEF0>
fluent_axial_comp_flprj = <function fluent_axial_comp_flprj.<locals>.return_ds at 0x00000245E306C8B0>

    @pytest.mark.skipif(
        not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_11_0,
        reason="Bug due to gatebin incompatibilities for servers <26.1",
    )
    def test_cff_model_flprj(server_type, fluent_axial_comp_flprj):
>       ds = fluent_axial_comp_flprj(server_type)

tests\test_cff.py:47: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\conftest.py:264: in return_ds
    files = examples.download_fluent_axial_comp(server=server)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1262: in download_fluent_axial_comp
    _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x00000245E049E050>
fp = <http.client.HTTPResponse object at 0x00000245E76BBA00>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x00000245E0BC44F0>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests/test_datasources.py::test_set_resultpath_data_sources_cfx_res[ansys-grpc-dpf]
Stack Traces | 11s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x7fb4db8ea4d0>

    def test_set_resultpath_data_sources_cfx_res(server_type):
        from ansys.dpf.core import examples
    
>       res_file = examples.download_cfx_mixing_elbow(server=server_type)

tests/test_datasources.py:109: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
..../test-api/lib/python3.10.../core/examples/downloads.py:1644: in download_cfx_mixing_elbow
    return _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7fb4c75bd2a0>
req = <urllib.request.Request object at 0x7fb4a5ac5d50>
fp = <http.client.HTTPResponse object at 0x7fb4a5ac6410>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7fb4a5ac6680>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
src.ansys.dpf.core.animation::core.animation.animate_mode
Stack Traces | 11.1s run time
057     deform_scale_factor : float, optional
058         Scale factor to apply when warping the mesh. Defaults to 1.0.
059 
060     Examples
061     --------
062     Import a modal result from a model.
063 
064     >>> import ansys.dpf.core as dpf
065     >>> from ansys.dpf.core import examples
066     >>> model = dpf.Model(examples.download_modal_frame())
UNEXPECTED EXCEPTION: <HTTPError 504: 'Gateway Time-out'>
Traceback (most recent call last):
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/doctest.py", line 1350, in __run
    exec(compile(example.source, filename, "single",
  File "<doctest core.animation.animate_mode[2]>", line 1, in <module>
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10.../core/examples/downloads.py", line 1116, in download_modal_frame
    return _download_file(
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10.../core/examples/downloads.py", line 116, in _download_file
    local_path = _retrieve_file(url, filename, directory)
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10.../core/examples/downloads.py", line 110, in _retrieve_file
    _, resp = urlretrieve(url, local_path)
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 241, in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 216, in urlopen
    return opener.open(url, data, timeout)
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 525, in open
    response = meth(req, response)
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 634, in http_response
    response = self.parent.error(
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 563, in error
    return self._call_chain(*args)
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 496, in _call_chain
    result = func(*args)
  File ".../hostedtoolcache/Python/3.10.19................................./x64/lib/python3.10/urllib/request.py", line 643, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 504: Gateway Time-out
.../dpf/core/animation.py:66: UnexpectedException
tests\test_examples.py::test_examples::test_download_piston_rod
Stack Traces | 11.2s run time
def test_download_piston_rod():
>       path = examples.download_piston_rod()

tests\test_examples.py:54: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:902: in download_piston_rod
    return _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x00000245DE6083A0>
req = <urllib.request.Request object at 0x000002458543B640>
fp = <http.client.HTTPResponse object at 0x000002458543B040>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x000002458543B8B0>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_plotter.py::test_plotter::test_field_elemental_nodal_plot_shells
Stack Traces | 11.7s run time
@pytest.mark.skipif(not HAS_PYVISTA, reason="Please install pyvista")
    def test_field_elemental_nodal_plot_shells():
        from ansys.dpf.core import examples
    
>       model = dpf.core.Model(examples.download_pontoon())

tests\test_plotter.py:272: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:289: in download_pontoon
    return _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x000002088E8ABD00>
req = <urllib.request.Request object at 0x000002088FFEB6A0>
fp = <http.client.HTTPResponse object at 0x000002088FFE82B0>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x000002088FFE9000>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests/test_examples.py::test_find_examples[ansys-grpc-dpf-transient_therm]
Stack Traces | 11.7s run time
example = 'transient_therm'
server_type_remote_process = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x7fa031cbd7e0>

    @pytest.mark.parametrize(
        "example",
        list_examples,
    )
    def test_find_examples(example, server_type_remote_process):
        # get example by string, so we can parameterize it without breaking
        # collection
        server_type_remote_process.local_server = False
        func = getattr(globals()["examples"], "find_" + example)
>       path = func(server=server_type_remote_process)

tests/test_examples.py:145: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
..../test-api/lib/python3.10.../core/examples/downloads.py:1868: in find_transient_therm
    return _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7fa02249b8e0>
req = <urllib.request.Request object at 0x7fa01dc24520>
fp = <http.client.HTTPResponse object at 0x7fa01dc24d60>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7fa01dc25600>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
tests\test_examples.py::test_examples::test_download_average_filter_plugin
Stack Traces | 11.7s run time
def test_download_average_filter_plugin():
>       assert Path(examples.download_average_filter_plugin(return_local_path=True)).exists()

tests\test_examples.py:202: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:2029: in download_average_filter_plugin
    return _retrieve_plugin(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:2122: in _retrieve_plugin
    operator_file_path = _retrieve_file(EXAMPLE_FILE, file, directory="python_plugins")
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x000002088E8ABD00>
req = <urllib.request.Request object at 0x000002088EC08700>
fp = <http.client.HTTPResponse object at 0x000002088D490F70>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x000002088EC09810>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_examples.py::test_examples::test_delete_downloaded_files
Stack Traces | 11.8s run time
def test_delete_downloaded_files():
>       path = Path(examples.download_multi_stage_cyclic_result(return_local_path=True))

tests\test_examples.py:153: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:372: in download_multi_stage_cyclic_result
    return _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x000002088E8ABD00>
req = <urllib.request.Request object at 0x0000020889D24280>
fp = <http.client.HTTPResponse object at 0x000002088ACF5C00>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x000002088ACF4A60>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
src.ansys.dpf.core.plotter::core.plotter.DpfPlotter.add_streamlines
Stack Traces | 12.9s run time
644             avoid throwing if computed streamlines are empty. See
645             ``Examples`` section for more information.
646 
647         Examples
648         --------
649         >>> from ansys.dpf import core as dpf
650         >>> from ansys.dpf.core import examples
651         >>> from ansys.dpf.core.helpers.streamlines import compute_streamlines
652         >>> # Get model and meshed region
653         >>> files = examples.download_fluent_mixing_elbow_steady_state()
UNEXPECTED EXCEPTION: <HTTPError 504: 'Gateway Time-out'>
Traceback (most recent call last):
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\doctest.py", line 1350, in __run
    exec(compile(example.source, filename, "single",
  File "<doctest core.plotter.DpfPlotter.add_streamlines[3]>", line 1, in <module>
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\site-packages\ansys\dpf\core\examples\downloads.py", line 1356, in download_fluent_mixing_elbow_steady_state
    "flprj": _download_file(
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\site-packages\ansys\dpf\core\examples\downloads.py", line 116, in _download_file
    local_path = _retrieve_file(url, filename, directory)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\site-packages\ansys\dpf\core\examples\downloads.py", line 110, in _retrieve_file
    _, resp = urlretrieve(url, local_path)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 241, in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 216, in urlopen
    return opener.open(url, data, timeout)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 525, in open
    response = meth(req, response)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 634, in http_response
    response = self.parent.error(
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 563, in error
    return self._call_chain(*args)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 496, in _call_chain
    result = func(*args)
  File "C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py", line 643, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 504: Gateway Time-out
D:\a\pydpf-core\pydpf-core\src\ansys\dpf\core\plotter.py:653: UnexpectedException
tests\test_plotter.py::test_plotter::test_plot_meshes_container_only
Stack Traces | 19s run time
multishells = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @pytest.mark.skipif(not HAS_PYVISTA, reason="Please install pyvista")
    def test_plot_meshes_container_only(multishells):
        model = core.Model(multishells)
        mesh = model.metadata.meshed_region
        split_mesh_op = core.Operator("split_mesh")
        split_mesh_op.connect(7, mesh)
        split_mesh_op.connect(13, "mat")
>       meshes_cont = split_mesh_op.get_output(0, core.types.meshes_container)

tests\test_plotter.py:591: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.dpf_operator.Operator object at 0x00000245842AE110>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshes_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_MeshesContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: Cannot connect to license server system.
E      The license server manager (lmgrd) has not been started yet,
E      the wrong port@host or license file is being used, or the
E      port or hostname in the license file has been changed.
E     Feature:       preppost
E     Server name:   20.123.222.41
E     License path:  1055@20.123.222.41;
E     FlexNet Licensing error:-15,10032
E     Any supported license check out failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure that you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     a 'data processing core error' error occurred: split_mesh:8907

.tox\test-api\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:476: DPFServerException
tests\test_plotter.py::test_plotter::test_plotter_add_mesh
Stack Traces | 19.8s run time
multishells = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @pytest.mark.skipif(not HAS_PYVISTA, reason="Please install pyvista")
    def test_plotter_add_mesh(multishells):
        model = core.Model(multishells)
        mesh = model.metadata.meshed_region
        split_mesh_op = core.Operator("split_mesh")
        split_mesh_op.connect(7, mesh)
        split_mesh_op.connect(13, "mat")
>       meshes_cont = split_mesh_op.get_output(0, core.types.meshes_container)

tests\test_plotter.py:602: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.dpf_operator.Operator object at 0x00000245F78C6350>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshes_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_MeshesContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: Cannot connect to license server system.
E      The license server manager (lmgrd) has not been started yet,
E      the wrong port@host or license file is being used, or the
E      port or hostname in the license file has been changed.
E     Feature:       preppost
E     Server name:   20.123.222.41
E     License path:  1055@20.123.222.41;
E     FlexNet Licensing error:-15,10032
E     Any supported license check out failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure that you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     a 'data processing core error' error occurred: split_mesh:8934

.tox\test-api\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:476: DPFServerException
tests\test_examples.py::test_examples::test_download_fluent_mixing_elbow_transient
Stack Traces | 21s run time
def test_download_fluent_mixing_elbow_transient():
>       path = examples.download_fluent_mixing_elbow_transient()

tests\test_examples.py:94: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:1526: in download_fluent_mixing_elbow_transient
    _download_file(
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
.tox\test-api\lib\site-packages\ansys\dpf\core\examples\downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:216: in urlopen
    return opener.open(url, data, timeout)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:525: in open
    response = meth(req, response)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:634: in http_response
    response = self.parent.error(
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:563: in error
    return self._call_chain(*args)
C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <urllib.request.HTTPDefaultErrorHandler object at 0x000002088E8ABD00>
req = <urllib.request.Request object at 0x000002089CC43DF0>
fp = <http.client.HTTPResponse object at 0x000002089CC43610>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x000002089C9F1930>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

C:\hostedtoolcache\windows\Python\3.10.11\x64\lib\urllib\request.py:643: HTTPError
tests\test_plotter.py::test_plotter::test_plot_warped_mesh
Stack Traces | 32.1s run time
multishells = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @pytest.mark.skipif(not HAS_PYVISTA, reason="This test requires pyvista")
    def test_plot_warped_mesh(multishells):
        model = core.Model(multishells)
        mesh = model.metadata.meshed_region
        disp_result = model.results.displacement.on_time_scoping([1])
        scale_factor = 0.001
        mesh.plot(deform_by=disp_result, scale_factor=scale_factor)
        disp_op = disp_result()
        mesh.plot(deform_by=disp_op, scale_factor=scale_factor)
        disp_fc = disp_result.eval()
        mesh.plot(deform_by=disp_fc, scale_factor=scale_factor)
        disp_field = disp_fc[0]
        mesh.plot(deform_by=disp_field, scale_factor=scale_factor)
        disp_field.plot(deform_by=disp_result, scale_factor=scale_factor)
        mesh.plot(disp_field, deform_by=disp_result, scale_factor=scale_factor)
        split_op = dpf.core.operators.mesh.split_mesh(mesh=mesh, property="mat")
>       meshes_cont = split_op.get_output(output_type=dpf.core.types.meshes_container)

tests\test_plotter.py:858: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.operators.mesh.split_mesh.split_mesh object at 0x000002458424A740>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshes_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_MeshesContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: Cannot connect to license server system.
E      The license server manager (lmgrd) has not been started yet,
E      the wrong port@host or license file is being used, or the
E      port or hostname in the license file has been changed.
E     Feature:       preppost
E     Server name:   20.123.222.41
E     License path:  1055@20.123.222.41;
E     FlexNet Licensing error:-15,10032
E     Any supported license check out failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure that you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     a 'data processing core error' error occurred: split_mesh:9870

.tox\test-api\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:476: DPFServerException
tests/test_plotter.py::test_plotter_add_scoping
Stack Traces | 58.5s run time
fluent_mixing_elbow_steady_state = <function fluent_mixing_elbow_steady_state.<locals>.return_ds at 0x7f9fdf4a9b40>

    @pytest.mark.skipif(not HAS_PYVISTA, reason="This test requires pyvista")
    @pytest.mark.skipif(
        not SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_0,
        reason="cff::cas::meshes_provider requires DPF 24R1",
    )
    def test_plotter_add_scoping(fluent_mixing_elbow_steady_state):
        mesh: core.MeshedRegion = core.operators.mesh.mesh_provider(
>           data_sources=fluent_mixing_elbow_steady_state()
        ).eval()

tests/test_plotter.py:971: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:278: in return_ds
    files = examples.download_fluent_mixing_elbow_steady_state(server=server)
..../test-api/lib/python3.10.../core/examples/downloads.py:1415: in download_fluent_mixing_elbow_steady_state
    _download_file(
..../test-api/lib/python3.10.../core/examples/downloads.py:116: in _download_file
    local_path = _retrieve_file(url, filename, directory)
..../test-api/lib/python3.10.../core/examples/downloads.py:110: in _retrieve_file
    _, resp = urlretrieve(url, local_path)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:241: in urlretrieve
    with contextlib.closing(urlopen(url, data)) as fp:
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:216: in urlopen
    return opener.open(url, data, timeout)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:525: in open
    response = meth(req, response)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:634: in http_response
    response = self.parent.error(
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:563: in error
    return self._call_chain(*args)
.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:496: in _call_chain
    result = func(*args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <urllib.request.HTTPDefaultErrorHandler object at 0x7fa02249b8e0>
req = <urllib.request.Request object at 0x7fa031eff220>
fp = <http.client.HTTPResponse object at 0x7fa031efc880>, code = 504
msg = 'Gateway Time-out'
hdrs = <http.client.HTTPMessage object at 0x7fa031efcf10>

    def http_error_default(self, req, fp, code, msg, hdrs):
>       raise HTTPError(req.full_url, code, msg, hdrs, fp)
E       urllib.error.HTTPError: HTTP Error 504: Gateway Time-out

.../hostedtoolcache/Python/3.10.19...................../x64/lib/python3.10/urllib/request.py:643: HTTPError
tests\operators\test_change_shell_layers.py::operators::test_change_shell_layers::test_operator_change_shell_layers_connect_enum[gRPC CLayer]
Stack Traces | 181s run time
server_type = <ansys.dpf.core.server_types.GrpcServer object at 0x000001FCA7153AF0>

    @pytest.mark.skipif(
        os.name == "posix",
        reason="Failure under investigation on Ubuntu (Issue #2424)",
    )
    def test_operator_change_shell_layers_connect_enum(server_type):
        model = dpf.Model(
            examples.download_all_kinds_of_complexity_modal(server=server_type), server=server_type
        )
    
        stress = model.results.stress()
        stress.inputs.requested_location.connect("Nodal")
    
        # Test connection through signature
        change_shell_layers = dpf.operators.utility.change_shell_layers(
            fields_container=stress, e_shell_layer=dpf.common.shell_layers.bottom, server=server_type
        )
>       _ = change_shell_layers.eval()

tests\operators\test_change_shell_layers.py:50: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:850: in eval
    return self.outputs._outputs[0]()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:108: in __call__
    return self.get_data()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:85: in get_data
    output = self._operator.get_output(self._pin, type_output)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.operators.utility.change_shell_layers.change_shell_layers object at 0x000001FCA151DD80>
iOutput = 0

    @staticmethod
    def operator_getoutput_fields_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_FieldsContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     a 'data processing core error' error occurred: change_shellLayers:136<-S:122

.tox\test-operators\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:422: DPFServerException
test_documentation\test_documentation.py::test_documentation::test_generate_operators_doc
Stack Traces | 188s run time
tmp_path = WindowsPath('D:.../pydpf-core/pydpf-core/.tox.../pytest-of-unknown/pytest-0/test_generate_operators_doc2')

    def test_generate_operators_doc(tmp_path: Path):
        specs_path = tmp_path / "operator-specifications"
        specs_path.mkdir()
        toc_path = tmp_path / "toc.yml"
        toc_string = r"""- name: Operator specifications
      items:
    
    - name: Changelog
      href: changelog/changelog.md"""
        with toc_path.open(mode="w") as ff:
            ff.write(toc_string)
>       generate_operators_doc(ansys_path=dpf.SERVER.ansys_path, output_path=tmp_path, verbose=False)

test_documentation\test_documentation.py:40: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-documentation\lib\site-packages\ansys\dpf\core\documentation\generate_operators_doc.py:599: in generate_operators_doc
    router_info = get_operator_routing_info(server)
.tox\test-documentation\lib\site-packages\ansys\dpf\core\documentation\generate_operators_doc.py:552: in get_operator_routing_info
    dt_root: dpf.DataTree = dpf.dpf_operator.Operator(
.tox\test-documentation\lib\site-packages\ansys\dpf\core\dpf_operator.py:189: in __init__
    self._internal_obj = self._api.operator_new(self.name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'info::router_discovery'

    @staticmethod
    def operator_new(operatorName):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new(utils.to_char_ptr(operatorName), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-documentation\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:26: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_meshes_container_2
Stack Traces | 198s run time
multishells = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @pytest.mark.skipif(not HAS_PYVISTA, reason="Please install pyvista")
    def test_plot_meshes_container_2(multishells):
        from ansys.dpf import core
    
        model = core.Model(multishells)
        mesh = model.metadata.meshed_region
        split_mesh_op = core.Operator("split_mesh")
        split_mesh_op.connect(7, mesh)
        split_mesh_op.connect(13, "mat")
>       meshes_cont = split_mesh_op.get_output(0, core.types.meshes_container)

tests\test_plotter.py:567: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

op = <ansys.dpf.core.dpf_operator.Operator object at 0x00000245FAE2A4D0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshes_container(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_MeshesContainer(op._internal_obj if op is not None else None, utils.to_int32(iOutput), ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: Cannot connect to license server system.
E      The license server manager (lmgrd) has not been started yet,
E      the wrong port@host or license file is being used, or the
E      port or hostname in the license file has been changed.
E     Feature:       preppost
E     Server name:   20.123.222.41
E     License path:  1055@20.123.222.41;
E     FlexNet Licensing error:-15,10032
E     Any supported license check out failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure that you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E     a 'data processing core error' error occurred: split_mesh:8880

.tox\test-api\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:476: DPFServerException
tests\operators\test_change_shell_layers.py::operators::test_change_shell_layers::test_operator_change_shell_layers_connect_enum[ansys-grpc-dpf]
Stack Traces | 326s run time
server_type = <ansys.dpf.core.server_types.LegacyGrpcServer object at 0x000001FCA4AFDBA0>

    @pytest.mark.skipif(
        os.name == "posix",
        reason="Failure under investigation on Ubuntu (Issue #2424)",
    )
    def test_operator_change_shell_layers_connect_enum(server_type):
        model = dpf.Model(
            examples.download_all_kinds_of_complexity_modal(server=server_type), server=server_type
        )
    
        stress = model.results.stress()
        stress.inputs.requested_location.connect("Nodal")
    
        # Test connection through signature
        change_shell_layers = dpf.operators.utility.change_shell_layers(
            fields_container=stress, e_shell_layer=dpf.common.shell_layers.bottom, server=server_type
        )
>       _ = change_shell_layers.eval()

tests\operators\test_change_shell_layers.py:50: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:850: in eval
    return self.outputs._outputs[0]()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:108: in __call__
    return self.get_data()
.tox\test-operators\lib\site-packages\ansys\dpf\core\outputs.py:85: in get_data
    output = self._operator.get_output(self._pin, type_output)
.tox\test-operators\lib\site-packages\ansys\dpf\core\dpf_operator.py:632: in get_output
    internal_obj = type_tuple[1](self, pin)
.tox\test-operators\lib\site-packages\ansys\dpf\gate\errors.py:52: in wrapper
    out = func(*args, **kwargs)
.tox\test-operators\lib\site-packages\ansys\dpf\gate\operator_grpcapi.py:295: in operator_getoutput_fields_container
    return OperatorGRPCAPI.get_output_finish(op, request, stype, subtype)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.operators.utility.change_shell_layers.change_shell_layers object at 0x000001FCA71A9600>, op {
  id {
..._address: "127.0.0.1:50056"
  }
  name: "change_shellLayers"
}
type: COLLECTION
subtype: FIELD
, 'collection', 'field')
kwargs = {}, _InactiveRpcError = <class 'grpc._channel._InactiveRpcError'>
_MultiThreadedRendezvous = <class 'grpc._channel._MultiThreadedRendezvous'>
details = 'change_shellLayers:136<-S:122<- License check failed. Ensure the server is set using environment variable ANSYSLMD_LI...on about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture gRPC exceptions."""
        from grpc._channel import _InactiveRpcError, _MultiThreadedRendezvous
        try:
            out = func(*args, **kwargs)
        except (_InactiveRpcError, _MultiThreadedRendezvous) as error:
            details = error.details()
            if "object is null in the dataBase" in details:
                raise DPFServerNullObject(details) from None
            elif "Unable to open the following file" in details:
                raise DPFServerException(
                    "The result file could not be found or could not be opened, the server raised an error message: \n" + details) from None
>           raise DPFServerException(details) from None
E           ansys.dpf.gate.errors.DPFServerException:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .
E           change_shellLayers:136<-S:122

.tox\test-operators\lib\site-packages\ansys\dpf\gate\errors.py:60: DPFServerException
test_local_server\test_local_server.py::test_local_server::test_add_operator_server_field
Stack Traces | 326s run time
local_server = <ansys.dpf.core.server_types.GrpcServer object at 0x0000022403904F40>

    def test_add_operator_server_field(local_server):
        field = dpf.core.fields_factory.create_3d_vector_field(2, server=local_server)
        field.data = [0.0, 1.0, 2.0, 3.0, 4.0, 5.0]
        field.scoping.ids = [1, 2]
    
        # field+op
        forward = ops.utility.forward_field(field, server=local_server)
>       add = field + forward

test_local_server\test_local_server.py:36: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-local_server\lib\site-packages\ansys\dpf\core\field.py:819: in __add__
    op = operators.math.add(server=self._server)
.tox\test-local_server\lib\site-packages\ansys\dpf\core\operators\math\add.py:67: in __init__
    super().__init__(
.tox\test-local_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'add'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x00000224055FB9D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-local_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException
test_multi_server\test_multi_server.py::test_multi_server::test_model_stress_multi_server[other_remote_server0]
Stack Traces | 476s run time
transient_models = (<ansys.dpf.core.model.Model object at 0x000001DC67BA94E0>, <ansys.dpf.core.model.Model object at 0x000001DC67BA9510>)

    def test_model_stress_multi_server(transient_models):
        tf = transient_models[0].metadata.time_freq_support
        time_scoping = range(1, 3)
        disp = transient_models[0].results.stress()
        disp.inputs.time_scoping(time_scoping)
        disp2 = transient_models[1].results.stress()
        disp2.inputs.time_scoping(time_scoping)
        fc = disp.outputs.fields_container()
        fc2 = disp2.outputs.fields_container()
>       check_fc(fc, fc2)

test_multi_server\test_multi_server.py:237: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test_multi_server\test_multi_server.py:224: in check_fc
    idenfc = dpf.operators.logic.identical_fc(fc, fc2.deep_copy(server=f._server), server=f._server)
.tox\test-multi_server\lib\site-packages\ansys\dpf\core\operators\logic\identical_fc.py:80: in __init__
    super().__init__(
.tox\test-multi_server\lib\site-packages\ansys\dpf\core\dpf_operator.py:185: in __init__
    self._internal_obj = self._api.operator_new_on_client(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

operatorName = 'AreFieldsIdentical_fc'
client = <ansys.dpf.core.server_types.GrpcClient object at 0x000001DC67C849D0>

    @staticmethod
    def operator_new_on_client(operatorName, client):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_new_on_client(utils.to_char_ptr(operatorName), client._internal_obj if client is not None else None, ctypes.byref(utils.to_int32(errorSize)), ctypes.byref(sError))
    	if errorSize.value != 0:
>   		raise errors.DPFServerException(sError.value)
E     ansys.dpf.gate.errors.DPFServerException: a 'data processing core error' error occurred:  License check failed. Ensure the server is set using environment variable ANSYSLMD_LICENSE_FILE to point to the server (Example ANSYSLMD_LICENSE_FILE = 1055@my_license_server.ansys.com). Ensure you have valid license increments to use DPF Server. For more information about accepted license increments, see https://dpf.docs.pyansys..../stable/getting_started/licensing.html .

.tox\test-multi_server\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:781: DPFServerException

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@github-actions
Copy link
Contributor

github-actions bot commented Dec 11, 2025

Some tests with 'continue-on-error: true' have failed:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

server-sync DO NOT USE, Related to automatic synchronization with the server

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants