branch: elpa/popup
commit 114d646f0f4dd49de19dfedd78630018f71470e5
Author: Jen-Chieh Shen <jcs090...@gmail.com>
Commit: Jen-Chieh Shen <jcs090...@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