arrow-cpp: disable S3 tests needing Minio

The tests rely on `minio` which is has been abandoned upstream, see #490996.
In order to reduce the number of packages that will be flagged as insecure
once minio is tagged with `knownVulnerabilities`, we disable the arrow-cpp
tests needing it.
This commit is contained in:
Thomas Gerbet
2026-02-19 17:48:26 +01:00
parent d90914bdd0
commit 2246ee4275
+1 -2
View File
@@ -33,7 +33,6 @@
gtest,
libbacktrace,
lz4,
minio,
ninja,
nlohmann_json,
openssl,
@@ -155,6 +154,7 @@ stdenv.mkDerivation (finalAttrs: {
"TestMinioServer.Connect"
"TestS3FS.*"
"TestS3FSGeneric.*"
"TestS3FSHTTPS.*" # Needs Minio
];
in
"-${lib.concatStringsSep ":" filteredTests}";
@@ -288,7 +288,6 @@ stdenv.mkDerivation (finalAttrs: {
which
sqlite
]
++ lib.optionals enableS3 [ minio ]
++ lib.optionals enableFlight [ python3 ]
++ lib.optionals enableAzure [ azurite ];