guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/19: gnu: python-afdko: Run tests in parallel.


From: guix-commits
Subject: 03/19: gnu: python-afdko: Run tests in parallel.
Date: Fri, 16 Sep 2022 13:04:19 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 937215d562f65cd24c0113ebc3663e93fec0f595
Author: Marius Bakke <marius@gnu.org>
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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]