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

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

[nongnu] elpa/popup 114d646f0f: Add checkdoc and lint commands


From: ELPA Syncer
Subject: [nongnu] elpa/popup 114d646f0f: Add checkdoc and lint commands
Date: Tue, 10 May 2022 04:58:39 -0400 (EDT)

branch: elpa/popup
commit 114d646f0f4dd49de19dfedd78630018f71470e5
Author: Jen-Chieh Shen <jcs090218@gmail.com>
Commit: Jen-Chieh Shen <jcs090218@gmail.com>

    Add checkdoc and lint commands
---
 Makefile | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 7a6c52ecdb..fe5c962280 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,6 @@ SHELL := /usr/bin/env bash
 EMACS ?= emacs
 EASK ?= eask
 
-TEST-FILES := $(shell ls test/popup-*.el)
-
 .PHONY: clean checkdoc lint package install compile test
 
 ci: clean package install compile
@@ -23,7 +21,15 @@ compile:
 
 test:
        @echo "Testing..."
-       $(EASK) exec ert-runner -L . $(LOAD-TEST-FILES) -t '!no-win' -t '!org'
+       $(EASK) ert ./test/*.el
+
+checkdoc:
+       @echo "Run checkdoc..."
+       $(EASK) checkdoc
+
+lint:
+       @echo "Run package-lint..."
+       $(EASK) lint
 
 clean:
-       rm -rf .cask *.elc
+       $(EASK) clean-all



reply via email to

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