summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wagie2023-09-30 12:48:11 -0600
committerMark Wagie2023-09-30 12:48:11 -0600
commitd9ffbd06cf7e20ad481bf7d3623504b34d322080 (patch)
tree2b9e180706b2c4b69a8235be7d96caf95c51528f
parentd5fea436079e99c73ae4756862dfb7d41b9adf92 (diff)
downloadaur-d9ffbd06cf7e20ad481bf7d3623504b34d322080.tar.gz
Disable unit tests
- users can't be bothered to build in a clean chroot so tests may fail with random userspace crap interfering
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1164b4c308b9..16acd39e0d2b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,12 @@
pkgbase = git-cola
pkgdesc = The highly caffeinated Git GUI
pkgver = 4.3.2
- pkgrel = 2
+ pkgrel = 3
url = https://git-cola.github.io
arch = any
license = GPL2
checkdepends = appstream-glib
checkdepends = desktop-file-utils
- checkdepends = python-pytest
makedepends = python-build
makedepends = python-installer
makedepends = python-jaraco.packaging
diff --git a/PKGBUILD b/PKGBUILD
index e7e9afddcff4..9f3308121f1e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: TDY <tdy@gmx.com>
pkgname=git-cola
pkgver=4.3.2
-pkgrel=2
+pkgrel=3
pkgdesc="The highly caffeinated Git GUI"
arch=('any')
url="https://git-cola.github.io"
@@ -13,7 +13,7 @@ depends=('git' 'hicolor-icon-theme' 'python-numpy' 'python-polib' 'python-pyqt5'
makedepends=('python-build' 'python-installer' 'python-jaraco.packaging'
'python-rst.linker' 'python-setuptools-scm' 'python-sphinx'
'python-wheel' 'rsync')
-checkdepends=('appstream-glib' 'desktop-file-utils' 'python-pytest')
+checkdepends=('appstream-glib' 'desktop-file-utils')
optdepends=('python-pygments: syntax highlighting'
'python-pyinotify: file system change monitoring'
'python-send2trash: enables "Send to Trash" functionality.'
@@ -43,8 +43,10 @@ check() {
desktop-file-validate share/applications/*.desktop
appstream-util validate-relax --nonet share/metainfo/*.appdata.xml
+ # Not running the unit tests because users don't know how to build in a chroot
+
# Run the unit tests
- GIT_CONFIG_NOSYSTEM=true LC_ALL="C.UTF-8" make test V=2
+# GIT_CONFIG_NOSYSTEM=true LC_ALL="C.UTF-8" make test V=2
}
package() {