gnu: python-tblib: Fix test failure with Python 3.7.
* gnu/packages/python.scm (python-tblib)[arguments]: Add 'adjust-tests' phase.
This commit is contained in:
parent
148caae049
commit
437c78bcfb
|
@ -9021,6 +9021,14 @@ own code, responding to click events and updating clock every second.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'adjust-tests
|
||||||
|
(lambda _
|
||||||
|
(when (which "python3")
|
||||||
|
;; Adjust the example output to match that of Python 3.7:
|
||||||
|
;; <https://github.com/ionelmc/python-tblib/issues/36>.
|
||||||
|
(substitute* "README.rst"
|
||||||
|
(("Exception\\('fail',") "Exception('fail'"))
|
||||||
|
#t)))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Upstream runs tests after installation and the package itself
|
;; Upstream runs tests after installation and the package itself
|
||||||
|
|
Loading…
Reference in New Issue