mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: fish: Disable flaky test.
* gnu/packages/shells.scm (fish)[arguments]: Delete test that occasionally fails.
This commit is contained in:
parent
d87c2db4f7
commit
06111d9396
1 changed files with 7 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
|
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
|
@ -148,6 +148,12 @@ (define-public fish
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((coreutils (assoc-ref inputs "coreutils"))
|
(let ((coreutils (assoc-ref inputs "coreutils"))
|
||||||
(bash (assoc-ref inputs "bash")))
|
(bash (assoc-ref inputs "bash")))
|
||||||
|
;; This test sporadically fails in the build container
|
||||||
|
;; because of leftover zombie processes, which are not
|
||||||
|
;; reaped automatically:
|
||||||
|
;; "Found existing zombie processes. Clean up zombies before running this test."
|
||||||
|
;; Disabling parallel tests does not reliably prevent it.
|
||||||
|
(delete-file "tests/checks/jobs.fish")
|
||||||
;; This test fails.
|
;; This test fails.
|
||||||
(delete-file "tests/checks/pipeline-pgroup.fish")
|
(delete-file "tests/checks/pipeline-pgroup.fish")
|
||||||
;; This one tries to open a terminal & can't simply be deleted.
|
;; This one tries to open a terminal & can't simply be deleted.
|
||||||
|
|
Loading…
Reference in a new issue