summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-11-13 17:15:47 +0000
committerGitHub <noreply@github.com>2021-11-13 17:15:47 +0000
commitf6a2ed2082d9a51668c86ba27d0b5496f7a2ea93 (patch)
tree1487acabd7f443c1f86a0aa77ed700d7be28f6ff /pkgs
parent5aaa5f5e75b3795e8f40d18dce211f50cceb6693 (diff)
parent001ac664326deb3adf6b432e0f85ded816f9263d (diff)
Merge pull request #145771 from risicle/ris-fiona-skip-aarch64-tests
python3Packages.fiona: skip some tests failing on aarch64
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/fiona/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fiona/default.nix b/pkgs/development/python-modules/fiona/default.nix
index 987a8ca6209e..0c1a3bd2c651 100644
--- a/pkgs/development/python-modules/fiona/default.nix
+++ b/pkgs/development/python-modules/fiona/default.nix
@@ -51,6 +51,12 @@ buildPythonPackage rec {
"http" "https" "wheel"
# Assert not true
"test_no_append_driver_cannot_append"
+ ] ++ lib.optionals stdenv.isAarch64 [
+ # https://github.com/Toblerity/Fiona/issues/1012 the existence of this
+ # as a bug hasn't been challenged and other distributors seem to also
+ # be skipping these tests on aarch64, so this is not unique to nixpkgs.
+ "test_write_or_driver_error"
+ "test_append_or_driver_error"
];
meta = with lib; {