me
/
guix
Archived
1
0
Fork 0

gnu: python: Disable failing test.

Fixes issue #35556 (see: https://bugs.gnu.org/35556).

* gnu/packages/python.scm (python-3.7)[make-flags]: Exclude the test "test_asyncio",
which currently fails.
master
Maxim Cournoyer 2019-05-03 23:46:29 -04:00
parent 123bba720d
commit a5e9413ce8
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 5 additions and 2 deletions

View File

@ -352,8 +352,11 @@ data types.")
(arguments (arguments
(substitute-keyword-arguments (package-arguments python-2) (substitute-keyword-arguments (package-arguments python-2)
((#:make-flags _) ((#:make-flags _)
;; Strip tests exclusions that have to do with Python 2 only. `(list (string-append
`(list (format #f "TESTOPTS=-j~d" (parallel-job-count)))) (format #f "TESTOPTS=-j~d" (parallel-job-count))
;; Exclude the following test, which fails as of 3.7.3 (see:
;; https://bugs.python.org/issue35998).
" --exclude test_asyncio")))
((#:phases phases) ((#:phases phases)
`(modify-phases ,phases `(modify-phases ,phases
;; Unset SOURCE_DATE_EPOCH while running the test-suite and set it ;; Unset SOURCE_DATE_EPOCH while running the test-suite and set it