mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: python-zope-testrunner: Fix bytecode compilation.
* gnu/packages/python-web.scm (python-zope-testrunner)[arguments]: Delete one test.
This commit is contained in:
parent
b19c51f567
commit
ff01706675
1 changed files with 9 additions and 1 deletions
|
@ -1992,7 +1992,15 @@ (define-public python-zope-testrunner
|
|||
"0jyyf1dcz156q95x2y7yw2v420q2xn3cff0c5aci7hmdmcbn0gc7"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
|
||||
'(#:tests? #f ;FIXME: Tests can't find zope.interface.
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-problematic-test
|
||||
(lambda _
|
||||
;; This test contains invalid syntax, which breaks bytecode
|
||||
;; compilation. For simplicity just remove it.
|
||||
(delete-file
|
||||
"src/zope/testrunner/tests/testrunner-ex/sample2/badsyntax.py"))))))
|
||||
(native-inputs
|
||||
`(("python-zope-testing" ,python-zope-testing)))
|
||||
(propagated-inputs
|
||||
|
|
Loading…
Reference in a new issue