emacs-patch-review
Port of Thunderbird Patch Review to mu4e.
git clone git://mccd.space/emacs-patch-review| Log | Files | Refs | README | Mail |
run.el (320B)
1 ;;; run.el --- batch test runner -*- lexical-binding: t -*-
2
3 ;; Invoke from the repository root: emacs -Q --batch -L . -l tests/run.el
4
5 (add-to-list 'load-path (expand-file-name "."))
6 (add-to-list 'load-path (expand-file-name "tests"))
7
8 (require 'patch-review-test)
9 (ert-run-tests-batch-and-exit)
10
11 ;;; run.el ends here