From 3c95635890e4b8cebee27239d7a1f0c139434e7c Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 8 Jan 2020 12:13:55 -0800 Subject: Integration test each individual package In order to differentiate better between the two types of tests, rename the test commands to unit-test. --- GNUmakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'GNUmakefile') 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) -- cgit v1.2.3-54-g00ecf