Merge pull request #293765 from imincik/rasterio-disable-flaky-test

python3Packages.rasterio: disable flaky test
This commit is contained in:
Robert Schütz 2024-03-07 15:50:09 +00:00 committed by GitHub
commit 86787d7363
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,7 +106,10 @@ buildPythonPackage rec {
"-m 'not network'"
];
disabledTests = lib.optionals stdenv.isDarwin [
disabledTests = [
# flaky
"test_outer_boundless_pixel_fidelity"
] ++ lib.optionals stdenv.isDarwin [
"test_reproject_error_propagation"
];