guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: python-cython: Support building on the Hurd.


From: guix-commits
Subject: 03/03: gnu: python-cython: Support building on the Hurd.
Date: Thu, 14 Sep 2023 17:54:13 -0400 (EDT)

janneke pushed a commit to branch master
in repository guix.

commit 0c1aa354048f82023e6d2043bfecc4fd58bc9b58
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Sep 14 23:12:23 2023 +0200

    gnu: python-cython: Support building on the Hurd.
    
    * gnu/packages/python-xyz.scm (python-cython)[arguments]: In phase `check',
    skip failing tests on the Hurd.
---
 gnu/packages/python-xyz.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dd43fb3cd1..2230310a03 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -142,6 +142,7 @@
 ;;; Copyright © 2023 Parnikkapore <poomklao@yahoo.com>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
 ;;; Copyright © c4droid <c4droid@foxmail.com>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -7129,6 +7130,11 @@ provides additional functionality on the produced 
Mallard documents.")
                        ,@(if (not (target-64bit?))
                              '("-x" "run.parallel")
                              '())
+                       ,@(if (system-hurd?)
+                             '("-x" "test_class_ref"
+                               "-x" "test_compiler_directives"
+                               "-x" "test_lang_version")
+                             '())
                        ;; This test fails when running on 24 cores.
                        "-x" "cpp_stl_conversion")))))))
     (home-page "https://cython.org/";)



reply via email to

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