diff options
| author | Glenn Morris | 2020-03-07 12:16:44 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-03-07 12:17:01 -0800 |
| commit | 6ce20525585cc9c4c865cfdd32b43ab268bb17ec (patch) | |
| tree | 6f55fa664aa588d0ab4891d1158463ba1c93b4c5 /test | |
| parent | 5d4cf1fef85bc24bc4cd9705ebb14150263ad707 (diff) | |
| download | emacs-6ce20525585cc9c4c865cfdd32b43ab268bb17ec.tar.gz emacs-6ce20525585cc9c4c865cfdd32b43ab268bb17ec.zip | |
Skip filenotify tests on hydra.nixos.org
They frequently hang for hours.
* test/lisp/filenotify-tests.el
(file-notify--test-remote-enabled-checked): Default to off on hydra.
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/filenotify-tests.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/filenotify-tests.el b/test/lisp/filenotify-tests.el index a184fabb9ff..42d86ee1538 100644 --- a/test/lisp/filenotify-tests.el +++ b/test/lisp/filenotify-tests.el | |||
| @@ -219,7 +219,8 @@ remote case we return always t." | |||
| 219 | (or file-notify--library | 219 | (or file-notify--library |
| 220 | (file-remote-p temporary-file-directory))) | 220 | (file-remote-p temporary-file-directory))) |
| 221 | 221 | ||
| 222 | (defvar file-notify--test-remote-enabled-checked nil | 222 | (defvar file-notify--test-remote-enabled-checked |
| 223 | (if (getenv "EMACS_HYDRA_CI") '(t . nil)) | ||
| 223 | "Cached result of `file-notify--test-remote-enabled'. | 224 | "Cached result of `file-notify--test-remote-enabled'. |
| 224 | If the function did run, the value is a cons cell, the `cdr' | 225 | If the function did run, the value is a cons cell, the `cdr' |
| 225 | being the result.") | 226 | being the result.") |