summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKisaragi Hiu2024-05-20 09:29:49 +0900
committerKisaragi Hiu2024-05-20 09:29:49 +0900
commit8d2ff2e64890fe8e8aa0a0fa7c4f49c713bfc965 (patch)
tree52ac6578f81f6595be89d1bf5b5e5dd5db08e28b
parentb340043977c24c09ff551bfa0c3b1808d3fd29b0 (diff)
downloadaur-python-chai.tar.gz
don't run now-broken tests and make it installable again
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD10
2 files changed, 8 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a3f624e0f3ea..ea0245cdcc86 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
pkgbase = python-chai
pkgdesc = Easy to use mocking, stubbing and spying framework.
pkgver = 1.1.2
- pkgrel = 7
+ pkgrel = 8
url = https://github.com/agoragames/chai
arch = any
license = BSD
- checkdepends = python-nose
makedepends = python-setuptools
depends = python
source = https://files.pythonhosted.org/packages/source/c/chai/chai-1.1.2.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index 258399feb330..c908d3a1e00f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,14 @@
pkgname=python-chai
pkgver=1.1.2
-pkgrel=7
+pkgrel=8
pkgdesc="Easy to use mocking, stubbing and spying framework."
arch=('any')
url="https://github.com/agoragames/chai"
license=('BSD')
depends=('python')
makedepends=('python-setuptools')
-checkdepends=('python-nose')
+# checkdepends=('python-nose')
source=("https://files.pythonhosted.org/packages/source/c/chai/chai-$pkgver.tar.gz")
sha256sums=('ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc')
@@ -20,7 +20,11 @@ build() {
check() {
cd chai-$pkgver
- nosetests
+ # Chai's tests are now too old to run properly. This package is still useful
+ # for eg. when building drkonqi with kdesrc-build, so keep it installable by
+ # not running the tests.
+
+ # nosetests
}
package() {