python3Packages.opensfm: skip failing tests on python>=3.14
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user