aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/py-tqdm/APKBUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/py-tqdm/APKBUILD b/testing/py-tqdm/APKBUILD
index d33808beb2..fa17b67bbc 100644
--- a/testing/py-tqdm/APKBUILD
+++ b/testing/py-tqdm/APKBUILD
@@ -14,6 +14,16 @@ source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname
0001-Import-sleep-nearer-to-usage.patch"
builddir="$srcdir/$_pkgname-$pkgver"
+prepare() {
+ default_prepare
+ cd "$builddir"
+
+ case "$CARCH" in
+ # XXX: Perf tests fail on aarch64 builder.
+ aarch64) rm tqdm/tests/tests_perf.py;;
+ esac
+}
+
build() {
cd "$builddir"
python2 setup.py build