guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: python-cryptography: Ignore spurious test failure.


From: Leo Famulari
Subject: 01/01: gnu: python-cryptography: Ignore spurious test failure.
Date: Fri, 14 Oct 2016 20:58:18 +0000 (UTC)

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

commit 470613f962dc93999c3505a2e84d3ab8016ffd8e
Author: Leo Famulari <address@hidden>
Date:   Fri Oct 14 16:55:02 2016 -0400

    gnu: python-cryptography: Ignore spurious test failure.
    
    * gnu/packages/python.scm (python-cryptography,
    python2-cryptography)[arguments]: Add 'disable-failing-test' phase.
---
 gnu/packages/python.scm |   14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f1bdee2..1b35bf0 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6215,6 +6215,20 @@ responses, rather than doing any computation.")
         (base32
          "1a85l548w5vvq3yhz0az7ajg2ijixzp6gagapw6wgrqvq28ghgs2"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'disable-failing-test
+           (lambda _
+             ;; This test is known to fail with OpenSSL >= 1.0.2i and older
+             ;; versions of python-cryptography:
+             ;; https://github.com/pyca/cryptography/issues/3196
+             ;; TODO: Try re-enabling the test when upgrading
+             ;; python-cryptography.
+             (substitute* "tests/hazmat/backends/test_openssl.py"
+               (("def test_numeric_string_x509_name_entry")
+                 "@pytest.mark.xfail\n    def 
test_numeric_string_x509_name_entry"))
+             #t)))))
     (inputs
      `(("openssl" ,openssl)))
     (propagated-inputs



reply via email to

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