From 937215d562f65cd24c0113ebc3663e93fec0f595 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 16 Sep 2022 08:08:02 +0200 Subject: 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(-) (limited to 'gnu/packages/fontutils.scm') 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 @@ (define-public python-afdko (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 @@ (define-public python-afdko openjdk ;required by antlr4 ninja python-pytest + python-pytest-xdist python-scikit-build python-setuptools-scm python-wheel)) -- cgit v1.2.3