aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhillip Lord <phillip.lord@russet.org.uk>2019-06-15 22:10:03 +0100
committerPhillip Lord <phillip.lord@russet.org.uk>2019-06-15 22:10:03 +0100
commitbe851b9eb42faa3c096737daaab0afcbc8c5087e (patch)
tree688f1f53b5908ee5523953b3bc2ef5748f4b3524 /Makefile
parent46d71b5218eadb2be2ec5ca32e5fe40f0640bbb9 (diff)
downloadorg-drill-be851b9eb42faa3c096737daaab0afcbc8c5087e.tar.gz
org-drill-be851b9eb42faa3c096737daaab0afcbc8c5087e.zip
Refactor robot testing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ea827e6..b5da638 100644
--- a/Makefile
+++ b/Makefile
@@ -7,14 +7,14 @@ ifdef EMACS
EMACS_ENV=EMACS=$(EMACS)
endif
-all:
+all: robot-and-test
install:
$(EMACS_ENV) $(CASK) install
test: install just-test
-robot-and-test: robot-test just-test
+robot-and-test: basic-robot-test just-test
just-test:
$(EMACS_ENV) $(CASK) emacs --batch -q \
@@ -35,8 +35,8 @@ docker-test:
$(MAKE) test-git DOCKER_TAG=25.3
$(MAKE) test-cp DOCKER_TAG=25.3
-robot-test:
+basic-robot-test:
$(CASK) clean-elc
- $(EMACS_ENV) ./robot/robot-test.sh
+ $(EMACS_ENV) ./robot/basic-run.sh
.PHONY: test