python312Packages.swh-objstorage: disable flaky test on aarch64-linux

This commit is contained in:
Pol Dellaiera
2025-04-02 21:28:59 +02:00
parent e3efd27210
commit e36e604d79
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitLab,
setuptools,
@@ -102,6 +103,11 @@ buildPythonPackage rec {
util-linux
] ++ psycopg.optional-dependencies.pool;
disabledTests = lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux) [
# FAILED swh/objstorage/tests/test_objstorage_winery.py::test_winery_leaky_bucket_tick - assert 1 == 0
"test_winery_leaky_bucket_tick"
];
meta = {
description = "Content-addressable object storage for the Software Heritage project";
homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-objstorage";