aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-01-08 12:13:55 -0800
committerGravatar Tom Willemse2020-01-08 12:13:55 -0800
commit3c95635890e4b8cebee27239d7a1f0c139434e7c (patch)
tree71908c9db2e95e91b53b7fb0aa8c108e184ce526 /GNUmakefile
parentbd805dadcb19e639e43a2b493207a3209f465073 (diff)
downloademacs-config-3c95635890e4b8cebee27239d7a1f0c139434e7c.tar.gz
emacs-config-3c95635890e4b8cebee27239d7a1f0c139434e7c.zip
Integration test each individual package
In order to differentiate better between the two types of tests, rename the test commands to unit-test.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index ee727b4..7e22dd0 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -62,7 +62,7 @@ install-%:
--eval '(package-refresh-contents)' \
--eval "(package-install '$*)"
-test-%: install-%
+unit-test-%: install-%
emacs --batch \
--load oni-package.el \
--funcall package-initialize \
@@ -71,5 +71,8 @@ test-%: install-%
--eval "(setq ert-batch-backtrace-right-margin nil)" \
--funcall ert-run-tests-batch-and-exit
+integration-test-%: install-%
+ bats test/integration/$*.bats
+
clean:
rm -fv $(FILES)