diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-08-09 15:54:21 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-08-09 15:54:21 +0200 |
commit | ea938270808edf3247a441e4ff37bb15174bc3a4 (patch) | |
tree | 7cce8f0c852b1aa0c51b3e7c2644b244486d8c9f /extra/python | |
parent | b920e9373ee42cb544efcc5cd2eeedb1a9a94f1c (diff) | |
download | packages-ea938270808edf3247a441e4ff37bb15174bc3a4.tar.xz |
extra/python: forcing -j1 for test execution
Diffstat (limited to 'extra/python')
-rw-r--r-- | extra/python/PKGBUILD | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extra/python/PKGBUILD b/extra/python/PKGBUILD new file mode 100644 index 00000000..53a0513b --- /dev/null +++ b/extra/python/PKGBUILD @@ -0,0 +1,13 @@ +eval "$( + declare -f build | \ + sed " + s/make /make EXTRATESTOPTS='-j 1' / + " +)" + +eval "$( + declare -f check | \ + sed " + s/ -m test.regrtest/ -m test.regrtest -j1/ + " +)" |