emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/buttercup e083d67fdc 2/4: Makefile: Rename test* targets c


From: ELPA Syncer
Subject: [nongnu] elpa/buttercup e083d67fdc 2/4: Makefile: Rename test* targets check*
Date: Wed, 10 Aug 2022 19:58:08 -0400 (EDT)

branch: elpa/buttercup
commit e083d67fdc5b20501d5f9a5717cf171e68a01378
Author: Ola Nilsson <ola.nilsson@gmail.com>
Commit: Ola Nilsson <ola.nilsson@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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]