taskwarrior.el/Makefile

14 lines
581 B
Makefile
Raw Normal View History

2019-09-02 22:17:46 +02:00
2019-10-23 11:38:57 +02:00
.PHONY: test-data
2019-09-02 22:17:46 +02:00
test-data: ## Generate some example tasks
for n in $$(seq 10); do task add "Example task $${n}"; done
2019-10-23 11:38:57 +02:00
.PHONY: test
test: fetch-deps ## Run ERT test suite
emacs -batch -l dash.el -l transient.el -l taskwarrior.el -l taskwarrior-test.el -f ert-run-tests-batch-and-exit
.PHONY: fetch-deps
fetch-deps: ## Fetch required dependencies
curl -fsSkL --retry 9 --retry-delay 9 -O "https://raw.githubusercontent.com/magit/transient/master/lisp/transient.el"
curl -fsSkL --retry 9 --retry-delay 9 -O "https://raw.githubusercontent.com/magnars/dash.el/master/dash.el"