spacemacs/spacemacs.mk
smile13241324 89ab17bd7a Add test for spacemacs//publish-doc export of documentation
To avoid further issues with the publishing of
documentations I have written a test to ensure that
all documentation files can be exported to html.

To avoid issues with loading the right org version
after package installation I have also slightly
modified the test workflow to include a dedicated
package installation target done prior to executing
any tests.
2017-04-17 19:03:41 -04:00

49 lines
1.5 KiB
Makefile

## Makefile --- Spacemacs master makefile
##
## Copyright (c) 2012-2017 Sylvain Benner & Contributors
##
## Author: Sylvain Benner <sylvain.benner@gmail.com>
## URL: https://github.com/syl20bnr/spacemacs
##
## This file is not part of GNU Emacs.
##
## License: GPLv3
EMACS_DIR = $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
TEST_NAME = `basename $(TEST_DIR) | tr a-z A-Z`
all: test
test: installation unit_tests func_tests
installation:
@echo "================================================================="
@echo "INSTALLATION OF PACKAGES FOR $(TEST_NAME)"
@echo "================================================================="
@emacs -batch \
$(addprefix -l $(EMACS_DIR)/, $(LOAD_FILES))
ifneq ($(strip $(UNIT_TEST_FILES)),)
unit_tests:
@echo "================================================================="
@echo "UNIT TESTS FOR $(TEST_NAME)"
@echo "================================================================="
@emacs -batch -l ert \
$(addprefix -l $(EMACS_DIR)/, $(LOAD_FILES)) \
$(addprefix -l $(TEST_DIR)/, $(UNIT_TEST_FILES)) \
-f ert-run-tests-batch-and-exit
endif
ifneq ($(strip $(FUNC_TEST_FILES)),)
func_tests:
@echo "================================================================="
@echo "FUNCTIONAL TESTS FOR $(TEST_NAME)"
@echo "================================================================="
@emacs -batch -l ert \
$(addprefix -l $(EMACS_DIR)/, $(LOAD_FILES)) \
$(addprefix -l $(TEST_DIR)/, $(FUNC_TEST_FILES)) \
-f ert-run-tests-batch-and-exit
endif
.PHONY: test unit_tests func_tests