diff options
Diffstat (limited to 'extra/python2/PKGBUILD')
-rw-r--r-- | extra/python2/PKGBUILD | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/extra/python2/PKGBUILD b/extra/python2/PKGBUILD index 65e8d592..8dea0a15 100644 --- a/extra/python2/PKGBUILD +++ b/extra/python2/PKGBUILD @@ -14,6 +14,23 @@ eval "$( ' )" +# tests run with -j4 per default effectively killing build slaves, +# forcing single threaded execution of tests + +eval "$( + declare -f build | \ + sed " + s/make/make EXTRATESTOPTS='-j 1' / + " +)" + +eval "$( + declare -f check | \ + sed " + s/ -m test.regrtest/ -m test.regrtest -j1/ + " +)" + # i486-specific if [ "${CARCH}" = "i486" ]; then # remove dependency on most things, we want only a simple interpreter |