But I had a few issues where my code was emitting compiler warnings. Every time I pushed code to my emacs package repository with byte-compile warnings, I would have someone tell me to fix these warnings. So I got fed up with this and created some tests that verify no compiler warnings exist.
I linked this together with Travis CI so that whenever I push my changes, I run a full test suite for my Emacs Lisp and also make sure no warnings exist. To setup Travis CI, I created this .travis.yml dotfile:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: emacs-lisp | |
env: | |
matrix: | |
- EMACS=emacs24 | |
- EMACS=emacs-snapshot | |
global: | |
- CASK=$HOME/.cask/bin/cask | |
before_install: | |
- sudo add-apt-repository -y ppa:cassou/emacs | |
- sudo add-apt-repository -y ppa:ubuntu-elisp/ppa | |
- sudo apt-get update -qq | |
- sudo apt-get install -qq $EMACS | |
- if [ "$EMACS" = 'emacs-snapshot' ]; then | |
sudo apt-get install -qq emacs-snapshot-el emacs-snapshot-nox; | |
fi | |
- sudo apt-get install -qq global | |
- curl -fsSkL --max-time 10 --retry 10 --retry-delay 10 | |
https://raw.github.com/cask/cask/master/go | python | |
script: | |
make test |
.travis.yml basically tells Travis CI to install a particular version of Emacs, then run "make test". Thats it. Here is what the makefile looks like:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY : test | |
EMACS ?= emacs | |
CASK ?= cask | |
LOADPATH = -L . | |
ELPA_DIR = \ | |
.cask/$(shell $(EMACS) -Q --batch --eval '(princ emacs-version)')/elpa | |
pre-test: | |
rm -f *.elc | |
$(CASK) exec $(EMACS) -batch -Q -L . -eval "(progn (setq byte-compile-error-on-warn t) (batch-byte-compile))" *.el | |
test: elpa pre-test | |
$(CASK) exec $(EMACS) -Q -batch $(LOADPATH) \ | |
$(patsubst %,-l %,$(wildcard test/test-*.el)) \ | |
-f ert-run-tests-batch-and-exit | |
test/test-%: elpa pre-test | |
$(CASK) exec $(EMACS) -Q -batch $(LOADPATH) \ | |
-l $@ \ | |
-f ert-run-tests-batch-and-exit | |
elpa: $(ELPA_DIR) | |
$(ELPA_DIR): Cask | |
$(CASK) install | |
touch $@ |
The Makefile test target essentially runs all the tests under the test/ directory while using the .cask directory as a sandbox, which will have all the necessary emacs lisp packages installed for your project. Now all you have to do is put tests under a test/ directory in your git project. Here is the test I use to verify my package builds with no warnings:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'ert) | |
(require '<<<YOUR EMACS LISP PACKAGE UNDER TEST>>>) | |
(ert-deftest no-byte-compile-warnings () | |
"Byte-compile should not emit warnings" | |
(byte-compile-file "<<<YOUR EMACS PACKAGE.el>>>") | |
(switch-to-buffer "*Compile-Log*") | |
(let ((lines (buffer-substring (point-min) (point-max)))) | |
(should (not (string-match "Warning:" lines)) ) | |
) | |
) |
Now all you have to do is run make test under your emacs package repository and you can ensure you have no warnings that other people might run into when running package-install. Since the makefile test target is dynamic, any test-file.el you put under the tests directory will now be run in Travis CI.
If you want to run them manually you can just run "make test/test-file.el". If you want to be really fancy, you can setup make test to be run as part of your git pre-commit hooks.
Hope this helps!