Enable all tests on Travis

This commit is contained in:
John Wiegley 2017-12-05 15:47:41 -08:00
parent 0c110ebd67
commit 2a9904b9e8

View file

@ -26,8 +26,6 @@
(require 'ert) (require 'ert)
(require 'use-package) (require 'use-package)
(defvar running-on-travis t)
(setq use-package-always-ensure nil (setq use-package-always-ensure nil
use-package-verbose 'errors use-package-verbose 'errors
use-package-expand-minimally t use-package-expand-minimally t
@ -824,11 +822,10 @@
(autoload #'bar "foo" nil t)) (autoload #'bar "foo" nil t))
(bar)))) (bar))))
(unless running-on-travis
(ert-deftest use-package-test/:commands-5 () (ert-deftest use-package-test/:commands-5 ()
(match-expansion (match-expansion
(use-package gnus-harvest (use-package gnus-harvest
:load-path "lisp/gnus-harvest" :load-path "foo"
:commands gnus-harvest-install :commands gnus-harvest-install
:demand t :demand t
:config :config
@ -837,7 +834,7 @@
(gnus-harvest-install))) (gnus-harvest-install)))
`(progn `(progn
(eval-and-compile (eval-and-compile
(add-to-list 'load-path "/Users/johnw/.emacs.d/lisp/gnus-harvest")) (add-to-list 'load-path ,(pred stringp)))
(require 'gnus-harvest nil nil) (require 'gnus-harvest nil nil)
(if (featurep 'message-x) (if (featurep 'message-x)
(gnus-harvest-install 'message-x) (gnus-harvest-install 'message-x)
@ -848,7 +845,7 @@
(let ((byte-compile-current-file t)) (let ((byte-compile-current-file t))
(match-expansion (match-expansion
(use-package gnus-harvest (use-package gnus-harvest
:load-path "lisp/gnus-harvest" :load-path "foo"
:commands gnus-harvest-install :commands gnus-harvest-install
:demand t :demand t
:config :config
@ -857,7 +854,7 @@
(gnus-harvest-install))) (gnus-harvest-install)))
`(progn `(progn
(eval-and-compile (eval-and-compile
(add-to-list 'load-path "/Users/johnw/.emacs.d/lisp/gnus-harvest")) (add-to-list 'load-path ,(pred stringp)))
(eval-and-compile (eval-and-compile
(eval-when-compile (eval-when-compile
(with-demoted-errors "Cannot load gnus-harvest: %S" nil (with-demoted-errors "Cannot load gnus-harvest: %S" nil
@ -869,7 +866,7 @@
(featurep 'message-x) (featurep 'message-x)
(gnus-harvest-install 'message-x) (gnus-harvest-install 'message-x)
(gnus-harvest-install)) (gnus-harvest-install))
t))))) t))))
(ert-deftest use-package-test/:defines-1 () (ert-deftest use-package-test/:defines-1 ()
(match-expansion (match-expansion
@ -1339,11 +1336,10 @@
(eval-after-load 'bar (eval-after-load 'bar
'(require 'foo nil nil)))))) '(require 'foo nil nil))))))
(unless running-on-travis
(ert-deftest use-package-test/:demand-7 () (ert-deftest use-package-test/:demand-7 ()
(match-expansion (match-expansion
(use-package counsel (use-package counsel
:load-path "site-lisp/swiper" :load-path "foo"
:after ivy :after ivy
:demand t :demand t
:diminish :diminish
@ -1359,7 +1355,7 @@
'counsel-minibuffer-history)) 'counsel-minibuffer-history))
`(progn `(progn
(eval-and-compile (eval-and-compile
(add-to-list 'load-path "/Users/johnw/.emacs.d/site-lisp/swiper")) (add-to-list 'load-path ,(pred stringp)))
(eval-and-compile (eval-and-compile
(preface-code)) (preface-code))
(eval-after-load 'ivy (eval-after-load 'ivy
@ -1372,7 +1368,7 @@
(ignore (ignore
(bind-keys :package counsel (bind-keys :package counsel
("C-*" . counsel-org-agenda-headlines) ("C-*" . counsel-org-agenda-headlines)
("M-x" . counsel-M-x))))))))) ("M-x" . counsel-M-x))))))))
(ert-deftest use-package-test/:config-1 () (ert-deftest use-package-test/:config-1 ()
(match-expansion (match-expansion
@ -1667,7 +1663,6 @@
("C-c C-r" . org-ref-helm-insert-cite-link)) ("C-c C-r" . org-ref-helm-insert-cite-link))
`(bind-key "C-c C-r" #'org-ref-helm-insert-cite-link override-global-map nil))) `(bind-key "C-c C-r" #'org-ref-helm-insert-cite-link override-global-map nil)))
(unless running-on-travis
(ert-deftest use-package-test/560 () (ert-deftest use-package-test/560 ()
(flet ((executable-find (name))) (flet ((executable-find (name)))
(let (notmuch-command) (let (notmuch-command)
@ -1676,17 +1671,17 @@
:preface (setq-default notmuch-command (executable-find "notmuch")) :preface (setq-default notmuch-command (executable-find "notmuch"))
:if notmuch-command :if notmuch-command
:requires foo :requires foo
:load-path "my-load-path" :load-path "foo"
:defines var) :defines var)
`(progn `(progn
(eval-and-compile (eval-and-compile
(add-to-list 'load-path "/Users/johnw/.emacs.d/my-load-path")) (add-to-list 'load-path ,(pred stringp)))
(when (featurep 'foo) (when (featurep 'foo)
(eval-and-compile (eval-and-compile
(setq-default notmuch-command (setq-default notmuch-command
(executable-find "notmuch"))) (executable-find "notmuch")))
(when (symbol-value 'notmuch-command) (when (symbol-value 'notmuch-command)
(require 'notmuch nil nil))))))))) (require 'notmuch nil nil))))))))
(ert-deftest bind-key/:prefix-map () (ert-deftest bind-key/:prefix-map ()
(match-expansion (match-expansion