guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: gnu: python-ecdsa: Fix faulty commit.


From: guix-commits
Subject: branch core-updates updated: gnu: python-ecdsa: Fix faulty commit.
Date: Sun, 23 Apr 2023 21:09:36 -0400

This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/core-updates by this push:
     new 779575cb33 gnu: python-ecdsa: Fix faulty commit.
779575cb33 is described below

commit 779575cb338c13d0ab91aa4230e75c0dc63b00ec
Author: John Kehayias <john.kehayias@protonmail.com>
AuthorDate: Sun Apr 23 20:59:36 2023 -0400

    gnu: python-ecdsa: Fix faulty commit.
    
    Fix previous commit, which did not properly add the test to be skipped and
    repeated the existing skipped test.  There is only one new test to be 
skipped.
    
    * gnu/packages/python-crypto.scm (python-ecdsa)[arguments]: In the 'check'
    phase, properly format the string for skipped tests.
---
 gnu/packages/python-crypto.scm | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 4e1aec4e0a..b1d94e85b8 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -226,15 +226,12 @@ Python interface around SSH networking concepts.")
                       "pytest"
                       "-vv"
                       "-k"
-                      "not test_multithreading_with_interrupts"
-                      ;; The following test fails and will be fixed in the
-                      ;; next release after v0.18.  See
-                      ;; 
<https://github.com/tlsfuzzer/python-ecdsa/issues/307>.
-                      "-k"
-                      "not test_add_different_scale_points"
-                      ;; The following test needs a KeyboardInterrupt to occur.
-                      "-k"
-                      "not test_multithreading_with_interrupts"))))))
+                      (string-append
+                       "not test_multithreading_with_interrupts "
+                       ;; The following test fails and will be fixed in the
+                       ;; next release after v0.18.  See
+                       ;; 
<https://github.com/tlsfuzzer/python-ecdsa/issues/307>.
+                       "and not test_add_different_scale_points")))))))
     (propagated-inputs
      (list python-six))
     (native-inputs



reply via email to

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