python3Packages.opensfm: skip failing tests on python>=3.14

This commit is contained in:
Gaetan Lepage
2026-07-07 16:09:30 +00:00
parent 2adf6d055f
commit 595abd895f
@@ -3,6 +3,7 @@
stdenv,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# build-system
ninja,
@@ -151,6 +152,11 @@ buildPythonPackage (finalAttrs: {
# flaky
"test_match_candidates_from_metadata_bow"
]
++ lib.optionals (pythonAtLeast "3.14") [
# _pickle.UnpicklingError: global 'numpy._core.numeric._frombuffer' is forbidden
"test_run_all"
"test_shot_view_ref_count"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"test_reconstruction_incremental"
"test_reconstruction_triangulation"