mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
94a2e94a26
commit
779575cb33
1 changed files with 6 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue