aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorOleg Titov <oleg.titov@gmail.com>2020-01-02 15:52:35 -0600
committerRasmus Thomsen <oss@cogitri.dev>2020-01-09 20:46:32 +0100
commitc03efb75a0fc805dc3d14d08e8258a6682b2f284 (patch)
tree1b6d21e1737810cee4a0cf652965a8475c27033c /testing
parentaf0d1d1edd77beb85efb9bbf0ad15000eb319170 (diff)
downloadaports-c03efb75a0fc805dc3d14d08e8258a6682b2f284.tar.bz2
aports-c03efb75a0fc805dc3d14d08e8258a6682b2f284.tar.xz
testing/py3-thinc: enable x86 as dependency py3-blis now supports it
- Disable some tests due to use of py3-hypothesis >= 5.0.0
Diffstat (limited to 'testing')
-rw-r--r--testing/py3-thinc/APKBUILD10
1 files changed, 7 insertions, 3 deletions
diff --git a/testing/py3-thinc/APKBUILD b/testing/py3-thinc/APKBUILD
index 7a087390ea..f250773d80 100644
--- a/testing/py3-thinc/APKBUILD
+++ b/testing/py3-thinc/APKBUILD
@@ -2,10 +2,10 @@
# Maintainer: Oleg Titov <oleg.titov@gmail.com>
pkgname=py3-thinc
pkgver=7.3.1
-pkgrel=0
+pkgrel=1
pkgdesc="Practical Machine Learning for NLP"
url="https://github.com/explosion/thinc"
-arch="x86_64"
+arch="x86_64 x86"
license="MIT"
depends="python3 py3-cymem py3-preshed py3-murmurhash py3-blis py3-plac py3-srsly py3-wasabi"
makedepends="python3-dev py3-setuptools cython"
@@ -19,7 +19,11 @@ build() {
}
check() {
- pytest-3 thinc
+ # disable some tests due to use of py3-hypothesis >= 5.0.0
+ pytest-3 thinc \
+ --ignore=thinc/tests/integration/test_batch_norm.py \
+ --ignore=thinc/tests/unit/test_affine.py \
+ --ignore=thinc/tests/unit/test_ops.py
}
package() {