From 022bb63dd59cf2d08d399174bb69cbc9f3af366a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Thu, 26 Mar 2026 07:12:19 +0100 Subject: [PATCH] community/py3-pyrate-limiter: disable check() for now The tests are too flaky. See: * https://github.com/vutran1710/PyrateLimiter/issues/247 * https://github.com/vutran1710/PyrateLimiter/issues/245 --- community/py3-pyrate-limiter/APKBUILD | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/community/py3-pyrate-limiter/APKBUILD b/community/py3-pyrate-limiter/APKBUILD index 6f47b8be135..b30103e1f82 100644 --- a/community/py3-pyrate-limiter/APKBUILD +++ b/community/py3-pyrate-limiter/APKBUILD @@ -10,6 +10,11 @@ depends="python3 py3-filelock" makedepends="py3-hatchling py3-gpep517 py3-setuptools py3-wheel" checkdepends="py3-pytest py3-pytest-asyncio py3-aiohttp" subpackages="$pkgname-pyc" +# The tests have "have timing assumptions that are fragile" and are +# extremly flaky on the different architectures, hence disabled. +# +# https://github.com/vutran1710/PyrateLimiter/issues/247#issuecomment-3481636425 +options="!check" source="https://github.com/vutran1710/PyrateLimiter/archive/v$pkgver/py3-pyrate-limiter-$pkgver.tar.gz static-version.patch" builddir="$srcdir/PyrateLimiter-$pkgver"