me
/
guix
Archived
1
0
Fork 0

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.
master
John Kehayias 2023-04-23 20:59:36 -04:00
parent 94a2e94a26
commit 779575cb33
No known key found for this signature in database
GPG Key ID: 499097AE5EA815D9
1 changed files with 6 additions and 9 deletions

View File

@ -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