aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2021-11-08 20:04:01 +0100
committerJonas Bernoulli <jonas@bernoul.li>2021-11-08 20:24:54 +0100
commit58742e978384688401a7b4ddd9611a2ab5bc9032 (patch)
tree0a8380f8a676271b5d7c34464823f0d253114a9f /Makefile
parent7d154b1f29214a6d6f2ebfb1af050d737c43e8b0 (diff)
Fix CI by relying less on Nix
The previous implementation kept breaking and we got no help fixing that. More or less go back to the previous implementation, which we know how to keep running without any outside help. Previously testing using libgit was disabled because it was broken, while now there simply isn't any code to attempt to test that.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/Makefile b/Makefile
index 8569e7c..12a5381 100644
--- a/Makefile
+++ b/Makefile
@@ -50,8 +50,6 @@ help:
$(info ====)
$(info )
$(info make test - run tests)
- $(info make test-git - run tests using Git functions)
- $(info make test-libgit - run tests using libgit functions)
$(info make test-interactive - run tests interactively)
$(info make emacs-Q - run emacs -Q plus Magit)
$(info )
@@ -113,27 +111,6 @@ test:
(load-file \"t/magit-tests.el\")\
(ert-run-tests-batch-and-exit))"
-test-git:
- @$(BATCH) --eval "(progn\
- $$suppress_warnings\
- (require 'magit)\
- (setq magit-inhibit-libgit t)\
- (unless (eq 'git (magit-gitimpl))\
- (message \"Git implementation not being used.\")\
- (kill-emacs 1))\
- (load-file \"t/magit-tests.el\")\
- (ert-run-tests-batch-and-exit))"
-
-test-libgit:
- @$(BATCH) --eval "(progn\
- $$suppress_warnings\
- (require 'magit)\
- (unless (eq 'libgit (magit-gitimpl))\
- (message \"libgit not available.\")\
- (kill-emacs 1))\
- (load-file \"t/magit-tests.el\")\
- (ert-run-tests-batch-and-exit))"
-
test-interactive:
@$(EMACSBIN) -Q $(LOAD_PATH) --eval "(progn\
(load-file \"t/magit-tests.el\")\