branch: elpa/buttercup commit e083d67fdc5b20501d5f9a5717cf171e68a01378 Author: Ola Nilsson <ola.nils...@gmail.com> Commit: Ola Nilsson <ola.nils...@gmail.com>
Makefile: Rename test* targets check* check is the canonical make target name. Keep test* as compatibility aliases. --- .github/workflows/test.yml | 2 +- Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d19c3f0615..8feee385ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,5 +38,5 @@ jobs: - uses: actions/checkout@v2 - name: Run tests - run: make test + run: make check diff --git a/Makefile b/Makefile index a8c0e81a78..2cfa9a7406 100644 --- a/Makefile +++ b/Makefile @@ -6,12 +6,12 @@ ELISP_FILES := $(wildcard *.el) all: test -test: test-buttercup test-docs +check test: check-buttercup check-docs -test-buttercup: compile +check-buttercup test-buttercup: compile ./bin/buttercup -L . tests $(if $(CI),--traceback pretty) -test-docs: compile +check-docs test-docs: compile $(EMACS) -batch -L . -l buttercup.el -f buttercup-run-markdown docs/writing-tests.md compile: $(patsubst %.el,%.elc,$(ELISP_FILES))