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.
This commit is contained in:
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

View file

@ -226,15 +226,12 @@ (define-public python-ecdsa
"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