branch: elpa/nix-mode
commit 9d1d025cb7e608e268dcd5d9af2014edc7487a87
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Use "check" as test target
---
Makefile | 2 +-
default.nix | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 4e1d93f6bc..cbad616839 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ PREFIX = /usr
all: $(ELCS) $(DOCS)
-test:
+check:
emacs -batch -L . \
-l tests/nix-mode-tests.el \
-l tests/nix-font-lock-tests.el \
diff --git a/default.nix b/default.nix
index 01cf1347a0..3f5f859043 100644
--- a/default.nix
+++ b/default.nix
@@ -16,5 +16,4 @@ in stdenvNoCC.mkDerivation {
echo Run make run to get vanilla emacs with nix-mode loaded.
'';
doCheck = true;
- checkTarget = "test";
}