guix-commits
[Top][All Lists]
Advanced

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

01/46: gnu: python-pyopenssl: Fix test failure.


From: guix-commits
Subject: 01/46: gnu: python-pyopenssl: Fix test failure.
Date: Fri, 14 Feb 2020 12:40:54 -0500 (EST)

mbakke pushed a commit to branch staging
in repository guix.

commit 55e51b6615230b90f292d6b09b739e4fadbeef3e
Author: Marius Bakke <address@hidden>
AuthorDate: Wed Jan 8 20:58:19 2020 +0100

    gnu: python-pyopenssl: Fix test failure.
    
    * gnu/packages/python-crypto.scm (python-pyopenssl)[native-inputs]: Add 
LIBFAKETIME.
    [arguments]: Use it to run tests with a fixed date.
    
    (cherry picked from commit 84f1e12b8b84acca1b3be7d41daacce28feb391d)
---
 gnu/packages/python-crypto.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 7117270..f355406 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2015 Eric Dvorsak <address@hidden>
 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner 
<address@hidden>
 ;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <address@hidden>
-;;; Copyright © 2016, 2017 Marius Bakke <address@hidden>
+;;; Copyright © 2016, 2017, 2020 Marius Bakke <address@hidden>
 ;;; Copyright © 2017 Ben Sturmfels <address@hidden>
 ;;; Copyright © 2016 Sou Bunnbu <address@hidden>
 ;;; Copyright © 2015 Cyril Roelandt <address@hidden>
@@ -488,7 +488,10 @@ message digests and key derivation functions.")
          (add-after 'install 'check
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (add-installed-pythonpath inputs outputs)
-             (invoke "py.test" "-v" "-k"
+             ;; PyOpenSSL runs tests against a certificate with a fixed
+             ;; expiry time.  To ensure successful builds in the future,
+             ;; set the time to roughly the release date.
+             (invoke "faketime" "2019-01-01" "py.test" "-v" "-k"
                      (string-append
                       ;; This test tries to look up certificates from
                       ;; the compiled-in default path in OpenSSL, which
@@ -503,7 +506,8 @@ message digests and key derivation functions.")
     (inputs
      `(("openssl" ,openssl)))
     (native-inputs
-     `(("python-flaky" ,python-flaky)
+     `(("libfaketime" ,libfaketime)
+       ("python-flaky" ,python-flaky)
        ("python-pretend" ,python-pretend)
        ("python-pytest" ,python-pytest)))
     (home-page "https://github.com/pyca/pyopenssl";)



reply via email to

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