You are not logged in.
Is it possible to configure AUR to always skip tests for some packages?
For some reason python2 is being pulled in on most of my Arch systems by other packages I'm using, and unlike the old days it's now an AUR package rather than a prebuilt. Whenever it updates there are a TON of long running and also some seriously annoying (plays audio) tests.
#/etc/makepkg.conf
...
# GLOBAL PACKAGE OPTIONS
# These are default values for the options=() settings
...
Implies that package specific options may exist, but skipping tests appears to be an all or nothing thing per (in my case yay) command invocation.
Offline
########################################################################
# BUILD ENVIRONMENT
#########################################################################
#
# Defaults: BUILDENV=(!distcc !color !ccache check !sign)
# A negated environment option will do the opposite of the comments below.
#
#-- distcc: Use the Distributed C/C++/ObjC compiler
#-- color: Colorize output messages
#-- ccache: Use ccache to cache compilation
#-- check: Run the check() function if present in the PKGBUILD
#-- sign: Generate PGP signature file
#
BUILDENV=(!distcc color !ccache check !sign)
Offline
Per package BUILDENV then, For example, the default BUILDENV is as you just quoted.
Can it be specified PER PACKAGE somewhere? So over-ride the global value (In configuration files, not at invocation time!) with E.G.
/etc/makepkg.d/python2 : BUILDENV=(!distcc color !ccache !check !sign)
Offline
If it's specific to a package, put it in the PKGBUILD.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline