blob: f76bc7078a534cf4baf6c3caf6838e8d7666c6aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# This makefile runs the tests as Travis runs them. Be sure to test
# locally before you push if you are under the impression that the
# patch should work. This will cut down on the number of commits in
# the repository that, essentially, patch patches.
all: 24.1 24.2 24.3
%:
evm install emacs-$@-bin || true
emacs --version
emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit
|