You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the need for this task.
In issue #444 and the associated PR #636, the linux and macos testbenches were restored. However, in that process it was noticed the runner macos-latest results in one failing testcase: FAILED tests/dflowfm/test_net.py::test_create_1d_2d_1d2d
This is the plain HYDROLIB-core code, the test fails on assert network1_link1d2d.shape == (21, 2):
macos-latest results in macos-14 which has arm64 architecture. However, the testbank is green on macos-12 and macos-13, which seem to have x86_64 architecture (details in Deltares/MeshKernelPy#162). It seems that this specific part of the meshkernelpy code is not covered by meshkernel tests and it fails on arm64 and not on x86_64 architecture. It seems not a hydrolib-core issue, but this is still valuable information.
What is the task?
Check if this hypothesis is correct and add this testcase to the meshkernel testbench after removing hydrolib-core dependencies.
The text was updated successfully, but these errors were encountered:
This testcase can be reproduced also when all hydrolib-calls are excluded. Therefore, a meshkernelpy issue is created to add this test to the meshkernelpy testbank: Deltares/MeshKernelPy#164. After fixing that issue, hydrolib-core should also have a green testbank on macos-14/macos-latest and this os can be added in ci.yml
What is the need for this task.
In issue #444 and the associated PR #636, the linux and macos testbenches were restored. However, in that process it was noticed the runner
macos-latest
results in one failing testcase:FAILED tests/dflowfm/test_net.py::test_create_1d_2d_1d2d
This is the plain HYDROLIB-core code, the test fails on
assert network1_link1d2d.shape == (21, 2)
:Plots this figure (on windows):
macos-latest
results inmacos-14
which has arm64 architecture. However, the testbank is green onmacos-12
andmacos-13
, which seem to have x86_64 architecture (details in Deltares/MeshKernelPy#162). It seems that this specific part of the meshkernelpy code is not covered by meshkernel tests and it fails on arm64 and not on x86_64 architecture. It seems not a hydrolib-core issue, but this is still valuable information.What is the task?
Check if this hypothesis is correct and add this testcase to the meshkernel testbench after removing hydrolib-core dependencies.
The text was updated successfully, but these errors were encountered: