mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 17:11:41 -05:00
33 lines
836 B
Makefile
33 lines
836 B
Makefile
testein-default:
|
|
./testein.py --clean-elc --load-ert
|
|
|
|
testein-24:
|
|
./testein.py --clean-elc -e emacs-snapshot
|
|
|
|
testein-unit-all:
|
|
./testein.py --no-func-test --clean-elc --load-ert
|
|
./testein.py --no-func-test --clean-elc -e emacs-snapshot
|
|
|
|
interactive-testein-default:
|
|
./testein.py --clean-elc --load-ert --no-batch
|
|
|
|
interactive-testein-24:
|
|
./testein.py --clean-elc -e emacs-snapshot --no-batch
|
|
|
|
ert-compile: ert-clean
|
|
cd lib/ert/lisp/emacs-lisp/ && \
|
|
emacs -Q -L . -batch -f batch-byte-compile *.el
|
|
|
|
ert-clean:
|
|
rm -f lib/ert/lisp/emacs-lisp/*.elc
|
|
|
|
|
|
travis-ci: ert-compile
|
|
|
|
emacs-snapshot --version
|
|
./testein.py --no-func-test --clean-elc -e emacs-snapshot
|
|
tail -n3 test-load_messages_batch_emacs-snapshot.log
|
|
|
|
emacs --version
|
|
./testein.py --no-func-test --clean-elc --load-ert
|
|
tail -n3 test-load_messages_batch_emacs.log
|