mbakke pushed a commit to branch master
in repository guix.
commit 937215d562f65cd24c0113ebc3663e93fec0f595
Author: Marius Bakke <[email protected]>
AuthorDate: Fri Sep 16 08:08:02 2022 +0200
gnu: python-afdko: Run tests in parallel.
* gnu/packages/fontutils.scm (python-afdko)[arguments]: Adjust check phase
for
parallel execution.
[native-inputs]: Add PYTHON-PYTEST-XDIST.
---
gnu/packages/fontutils.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 257c7d4e37..6f0cc4f586 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -198,7 +198,8 @@ them as it goes.")
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(setenv "HOME" "/tmp")
- (invoke "pytest" "-vv"))))
+ (invoke "pytest" "-vv" "--dist" "loadfile" "-n"
+ (number->string (parallel-job-count))))))
(add-after 'check 'wrap
(assoc-ref %standard-phases 'wrap))
(add-before 'wrap 'wrap-PATH
@@ -217,6 +218,7 @@ them as it goes.")
openjdk ;required by antlr4
ninja
python-pytest
+ python-pytest-xdist
python-scikit-build
python-setuptools-scm
python-wheel))