guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: python-cram: Fix build.


From: guix-commits
Subject: 02/02: gnu: python-cram: Fix build.
Date: Wed, 10 Jul 2019 14:29:40 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit ff1e80d7918df85b78216a70ab31062af320c0e4
Author: Marius Bakke <address@hidden>
Date:   Wed Jul 10 20:25:40 2019 +0200

    gnu: python-cram: Fix build.
    
    * gnu/packages/python-xyz.scm (python-cram)[arguments]: Do not require 100%
    test coverage.  While here, do not move the 'check' phase, as
    PYTHON-BUILD-SYSTEM now runs tests after install by default.
---
 gnu/packages/python-xyz.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f3fae63..ee347a3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6622,12 +6622,16 @@ pseudo terminal (pty), and interact with both the 
process and its pty.")
                ;; lines, but the test expects a single line...
                (("env\\['COLUMNS'\\] = '80'")
                 "env['COLUMNS'] = '160'"))
+
+             (substitute* "Makefile"
+               ;; Recent versions of python-coverage have caused the test
+               ;; coverage to decrease (as of version 0.7).  Allow that.
+               (("--fail-under=100")
+                "--fail-under=90"))
+
              #t))
-         (delete 'check)
-         (add-after 'install 'check
+         (replace 'check
            ;; The test phase uses the built library and executable.
-           ;; It's easier to run it after install since the build
-           ;; directory contains version-specific PATH.
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (add-installed-pythonpath inputs outputs)
              (setenv "PATH" (string-append (getenv "PATH") ":"



reply via email to

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