gnu: gajim: Restore 'disable-failing-tests phase.
Gajim consistently builds on my machines & bayfront, whilst raghavgururajan reports the exact same derivation consistently failing with the commented error. Odd. * gnu/packages/messaging.scm (gajim)[arguments]: Restore the old 'disable-failing-tests phase.master
parent
1825e45484
commit
4bf8348ff3
|
@ -1209,6 +1209,13 @@ of xmpppy.")
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-failing-tests
|
||||||
|
(lambda _
|
||||||
|
;; XXX Gajim builds fine on some (my) machines but fails elsewhere:
|
||||||
|
;; ModuleNotFoundError: No module named 'gajim.gui.emoji_data'
|
||||||
|
;; https://dev.gajim.org/gajim/gajim/-/issues/10478
|
||||||
|
(delete-file "test/lib/gajim_mocks.py")
|
||||||
|
(delete-file "test/unit/test_gui_interface.py")
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Tests require a running X server.
|
;; Tests require a running X server.
|
||||||
|
|
Reference in New Issue