File: ert-helper.el

package info (click to toggle)
lsp-mode 9.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,472 kB
  • sloc: lisp: 27,961; makefile: 62; java: 34; cpp: 33; javascript: 31; xml: 23; python: 14; sh: 2
file content (16 lines) | stat: -rw-r--r-- 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(setq ert-batch-backtrace-right-margin 500)

(custom-set-variables '(lsp-session-file "/tmp/lsp-test-session"))

(load-file "test/test-helper.el")

(ert-run-tests-batch-and-exit
 '(not (or
        (tag org)
        (tag no-win)
        ;; Succeeds during building, fails during autopkgtest when trying to
        ;; overwrite byte-compiled file in system directory but autopkgtest
        ;; doesn't have write permission.
        "lsp-byte-compilation-test"
        ))
 )