Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2025

Bumps coverage from 7.12.0 to 7.13.0.

Changelog

Sourced from coverage's changelog.

Version 7.13.0 — 2025-12-08

  • Feature: coverage.py now supports :file:.coveragerc.toml configuration files. These files use TOML syntax and take priority over :file:pyproject.toml but lower priority than :file:.coveragerc files. Closes issue 1643_ thanks to Olena Yefymenko <pull 1952_>_.

  • Fix: we now include a permanent .pth file which is installed with the code, fixing issue 2084. In 7.12.1b1 this was done incorrectly: it didn't work when using the source wheel (py3-none-any). This is now fixed. Thanks, Henry Schreiner <pull 2100_>.

  • Deprecated: when coverage.py is installed, it creates three command entry points: coverage, coverage3, and coverage-3.10 (if installed for Python 3.10). The second and third of these are not needed and will eventually be removed. They still work for now, but print a message about their deprecation.

.. _issue 1643: coveragepy/coveragepy#1643 .. _pull 1952: coveragepy/coveragepy#1952 .. _pull 2100: coveragepy/coveragepy#2100

.. _changes_7-12-1b1:

Version 7.12.1b1 — 2025-11-30

  • Fix: coverage.py now includes a permanent .pth file in the distribution which is installed with the code. This fixes issue 2084_: failure to patch for subprocess measurement when site-packages is not writable.

.. _issue 2084: coveragepy/coveragepy#2084

.. _changes_7-12-0:

Commits
  • 52fde9c docs: sample HTML for 7.13.0
  • 69de009 docs: prep for 7.13.0
  • 01387fc docs: tweak changes
  • 60206e8 chore: make edit_for_release
  • 78cfd57 docs: tweak CHANGES.rst
  • 21e726f feat: support .coveragerc.toml for configuration (#1952)
  • 3914e50 chore: bump the action-dependencies group with 2 updates (#2102)
  • d5e7c3a test: no need to group tests by needs_pth
  • ed516c4 test: fix metacov again
  • da833a1 fix: use Development Status classifier properly. #2101
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
coverage [< 6.5, > 6.4.3]

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [coverage](https://github.com/coveragepy/coveragepy) from 7.12.0 to 7.13.0.
- [Release notes](https://github.com/coveragepy/coveragepy/releases)
- [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.12.0...7.13.0)

---
updated-dependencies:
- dependency-name: coverage
  dependency-version: 7.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Related to package requirements maintenance Repository structure maintenance labels Dec 9, 2025
@codecov
Copy link

codecov bot commented Dec 9, 2025

❌ 24 Tests Failed:

Tests completed Failed Passed Skipped
1787 24 1763 376
View the top 3 failed test(s) by shortest run time
tests\test_plotter.py::test_plotter::test_field_solid_plot_scoping_nodal
Stack Traces | 0.025s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025798053BE0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025798053B80>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:3917<-mapdl::rst::MeshProvider:3918

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

During handling of the above exception, another exception occurred:

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_field_solid_plot_scoping_nodal(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:325: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025798053BE0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_warped_mesh
Stack Traces | 0.025s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578BA6B130>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578BA68940>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4561<-mapdl::rst::MeshProvider:4562

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

During handling of the above exception, another exception occurred:

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

tests\test_plotter.py:845: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578BA6B130>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_field_shell_plot_scoping_elemental
Stack Traces | 0.026s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D82770>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025782D83CA0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:3935<-mapdl::rst::MeshProvider:3936

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

During handling of the above exception, another exception occurred:

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_field_shell_plot_scoping_elemental(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:343: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D82770>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_mesh_field_plot
Stack Traces | 0.026s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578E3C94E0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578E3C9F90>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:3185<-mapdl::rst::MeshProvider:3186

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

During handling of the above exception, another exception occurred:

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_mesh_field_plot(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:86: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578E3C94E0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_meshes_container_only
Stack Traces | 0.026s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578DFC82E0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578DFC9B10>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4358<-mapdl::rst::MeshProvider:4359

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

During handling of the above exception, another exception occurred:

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

tests\test_plotter.py:587: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578DFC82E0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plotter_add_mesh
Stack Traces | 0.026s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025798053BE0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025798050610>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4376<-mapdl::rst::MeshProvider:4377

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

During handling of the above exception, another exception occurred:

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

tests\test_plotter.py:598: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025798053BE0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plotter_plot_contour_throw_shell_layers
Stack Traces | 0.026s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D82050>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst, failed to read inputs of provider operator'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:538: in result_info
    self._cache_result_info()
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:308: in _cache_result_info
    self._result_info = self._load_result_info()
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:459: in _load_result_info
    raise e
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:453: in _load_result_info
    result_info = op.get_output(0, types.result_info)
.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 0x0000025782D83E20>
iOutput = 0

    @staticmethod
    def operator_getoutput_result_info(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_resultInfo(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst, failed to read inputs of provider operator
E     a 'data processing core error' error occurred: ResultInfoProvider:3966<-mapdl::rst::ResultInfoProvider:3967<-mapdl::rst::ResultInfoProvider<-TimeFreqSupportProvider:3968<-mapdl::rst::TimeFreqSupportProvider:3969<-mapdl::rst::TimeFreqSupportProvider

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

During handling of the above exception, another exception occurred:

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_plot_contour_throw_shell_layers(multishells):
        model = core.Model(multishells)
>       stress = model.results.stress()

tests\test_plotter.py:370: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:182: in results
    self.metadata.result_info,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D82050>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst, failed to read inputs of provider operator'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst, failed to read inputs of provider operator

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_mesh_bare_plot
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D83730>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025782D80B50>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:3167<-mapdl::rst::MeshProvider:3168

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

During handling of the above exception, another exception occurred:

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_mesh_bare_plot(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:79: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D83730>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_fields_on_mesh_scoping
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002579539BA30>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025795398A30>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4169<-mapdl::rst::MeshProvider:4170

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

During handling of the above exception, another exception occurred:

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_fields_on_mesh_scoping(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:473: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002579539BA30>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_fieldscontainer_on_mesh_scoping
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578C3213C0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025782DB3970>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4151<-mapdl::rst::MeshProvider:4152

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

During handling of the above exception, another exception occurred:

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_fieldscontainer_on_mesh_scoping(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:456: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578C3213C0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_meshes_container_1
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D19E40>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025782D1BAF0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4322<-mapdl::rst::MeshProvider:4323

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

During handling of the above exception, another exception occurred:

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_1(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:540: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D19E40>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_meshes_container_2
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D18070>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025782D18DC0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4340<-mapdl::rst::MeshProvider:4341

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

During handling of the above exception, another exception occurred:

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

tests\test_plotter.py:563: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025782D18070>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_path_1
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025781434460>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025781437C40>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4394<-mapdl::rst::MeshProvider:4395

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

During handling of the above exception, another exception occurred:

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_path_1(multishells):
>       field, field_m, mesh, mesh_m = create_mesh_and_field_mapped(multishells)

tests\test_plotter.py:710: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\test_plotter.py:614: in create_mesh_and_field_mapped
    mesh = model.metadata.meshed_region
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025781434460>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_path_2
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578C952CE0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578C951750>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4412<-mapdl::rst::MeshProvider:4413

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

During handling of the above exception, another exception occurred:

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_path_2(multishells):
>       field, field_m, mesh, mesh_m = create_mesh_and_field_mapped(multishells)

tests\test_plotter.py:725: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\test_plotter.py:614: in create_mesh_and_field_mapped
    mesh = model.metadata.meshed_region
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578C952CE0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_return_cpos_plot
Stack Traces | 0.027s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578BA0DA20>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578BA0FB80>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4502<-mapdl::rst::MeshProvider:4503

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

During handling of the above exception, another exception occurred:

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_return_cpos_plot(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:819: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578BA0DA20>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_cpos_plot
Stack Traces | 0.028s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578AE2AEC0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578AE283A0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4484<-mapdl::rst::MeshProvider:4485

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

During handling of the above exception, another exception occurred:

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_cpos_plot(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:812: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578AE2AEC0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_fields_on_mesh_scoping_title
Stack Traces | 0.028s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578E024280>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578E026C50>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4187<-mapdl::rst::MeshProvider:4188

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

During handling of the above exception, another exception occurred:

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_fields_on_mesh_scoping_title(multishells):
        model = core.Model(multishells)
>       mesh = model.metadata.meshed_region

tests\test_plotter.py:490: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578E024280>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_min_max_labels
Stack Traces | 0.028s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578C92F820>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578C92F2B0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4448<-mapdl::rst::MeshProvider:4449

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

During handling of the above exception, another exception occurred:

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_min_max_labels(multishells):
>       field, field_m, mesh, mesh_m = create_mesh_and_field_mapped_2(multishells)

tests\test_plotter.py:753: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\test_plotter.py:648: in create_mesh_and_field_mapped_2
    mesh = model.metadata.meshed_region
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578C92F820>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_path_3
Stack Traces | 0.028s run time
args = (<ansys.dpf.core.model.Metadata object at 0x00000257953DDC90>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x00000257953DEFB0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4430<-mapdl::rst::MeshProvider:4431

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

During handling of the above exception, another exception occurred:

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_path_3(multishells):
>       field, field_m, mesh, mesh_m = create_mesh_and_field_mapped_2(multishells)

tests\test_plotter.py:739: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\test_plotter.py:648: in create_mesh_and_field_mapped_2
    mesh = model.metadata.meshed_region
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x00000257953DDC90>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_plot_node_labels
Stack Traces | 0.029s run time
args = (<ansys.dpf.core.model.Metadata object at 0x0000025798052AA0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025798053BB0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:4466<-mapdl::rst::MeshProvider:4467

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

During handling of the above exception, another exception occurred:

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_node_labels(multishells):
>       field, field_m, mesh, mesh_m = create_mesh_and_field_mapped_2(multishells)

tests\test_plotter.py:774: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests\test_plotter.py:648: in create_mesh_and_field_mapped_2
    mesh = model.metadata.meshed_region
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x0000025798052AA0>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_plotter.py::test_plotter::test_dpf_plotter_add_field_change_shell_layer
Stack Traces | 0.032s 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_dpf_plotter_add_field_change_shell_layer(multishells):
        field: core.Field = core.operators.result.stress(
            data_sources=core.DataSources(multishells),
            requested_location=core.locations.elemental,
>       ).eval()[1]

tests\test_plotter.py:400: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\dpf_operator.py:850: in eval
    return self.outputs._outputs[0]()
.tox\test-api\lib\site-packages\ansys\dpf\core\outputs.py:108: in __call__
    return self.get_data()
.tox\test-api\lib\site-packages\ansys\dpf\core\outputs.py:85: in get_data
    output = self._operator.get_output(self._pin, type_output)
.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.result.stress.stress object at 0x000002578E024E50>
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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: S:4050<-MeshProvider:4064<-mapdl::rst::MeshProvider:4065

.tox\test-api\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:422: DPFServerException
tests\test_plotter.py::test_plotter::test_dpf_plotter_add_field_throw_shell_layer
Stack Traces | 0.034s 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_dpf_plotter_add_field_throw_shell_layer(multishells):
        field: core.Field = core.operators.result.stress(
            data_sources=core.DataSources(multishells),
            requested_location=core.locations.elemental,
>       ).eval()[1]

tests\test_plotter.py:389: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\dpf_operator.py:850: in eval
    return self.outputs._outputs[0]()
.tox\test-api\lib\site-packages\ansys\dpf\core\outputs.py:108: in __call__
    return self.get_data()
.tox\test-api\lib\site-packages\ansys\dpf\core\outputs.py:85: in get_data
    output = self._operator.get_output(self._pin, type_output)
.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.result.stress.stress object at 0x00000257FDA578E0>
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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: S:4002<-MeshProvider:4016<-mapdl::rst::MeshProvider:4017

.tox\test-api\lib\site-packages\ansys\dpf\gate\generated\operator_capi.py:422: DPFServerException
tests\test_factories.py::test_factories::test_named_selection_scoping
Stack Traces | 14.7s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578E38F670>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x000002578E38E050>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     MeshProvider:3775<-mapdl::rst::MeshProvider:3776

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

During handling of the above exception, another exception occurred:

model_with_ns = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    def test_named_selection_scoping(model_with_ns):
        model = Model(model_with_ns)
        # print(model.metadata.available_named_selections)
>       scop = mesh_scoping_factory.named_selection_scoping("SELECTION", model)

tests\test_factories.py:301: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\mesh_scoping_factory.py:123: in named_selection_scoping
    return model.metadata.named_selection(named_selection=named_selection_name, server=server)
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:626: in named_selection
    return self.meshed_region.named_selection(named_selection=named_selection, server=server)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578E38F670>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: DPFServerException
tests\test_factories.py::test_factories::test_named_selection_scoping_with_deepcopy
Stack Traces | 17.3s run time
args = (<ansys.dpf.core.model.Metadata object at 0x000002578C322530>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
>           out = func(*args, **kwargs)

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:123: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:493: in meshed_region
    self._meshed_region = self.mesh_provider.get_output(0, types.meshed_region)
.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 0x0000025782D812D0>
iOutput = 0

    @staticmethod
    def operator_getoutput_meshed_region(op, iOutput):
    	errorSize = ctypes.c_int(0)
    	sError = ctypes.c_wchar_p()
    	res = capi.dll.Operator_getoutput_meshedRegion(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: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst
E     a 'data processing core error' error occurred: MeshProvider:5<-mapdl::rst::MeshProvider:6

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

During handling of the above exception, another exception occurred:

model_with_ns = 'D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    def test_named_selection_scoping_with_deepcopy(model_with_ns):
        model = Model(model_with_ns)
        server_2 = server.start_local_server(config=server_factory.AvailableServerConfigs.GrpcServer)
>       scop = mesh_scoping_factory.named_selection_scoping("SELECTION", model, server_2)

tests\test_factories.py:309: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox\test-api\lib\site-packages\ansys\dpf\core\mesh_scoping_factory.py:123: in named_selection_scoping
    return model.metadata.named_selection(named_selection=named_selection_name, server=server)
.tox\test-api\lib\site-packages\ansys\dpf\core\model.py:626: in named_selection
    return self.meshed_region.named_selection(named_selection=named_selection, server=server)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<ansys.dpf.core.model.Metadata object at 0x000002578C322530>,)
kwargs = {}
details = 'Unable to open the following file: D:\\a\\pydpf-core\\pydpf-core\\.tox\\test-api\\lib\\site-packages\\ansys\\dpf\\core\\examples\\result_files\\model_with_ns.rst'

    @wraps(func)
    def wrapper(*args, **kwargs):
        """Capture DPF's Server exceptions."""
        try:
            out = func(*args, **kwargs)
        except DPFServerException as error:
            details = str(error)
            if "source operator not found" in details:
                return None
>           raise DPFServerException(details)
E           ansys.dpf.gate.errors.DPFServerException: Unable to open the following file: D:\a\pydpf-core\pydpf-core\.tox\test-api\lib\site-packages\ansys\dpf\core\examples\result_files\model_with_ns.rst

.tox\test-api\lib\site-packages\ansys\dpf\core\errors.py:128: 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.

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

Labels

dependencies Related to package requirements maintenance Repository structure maintenance

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant