-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathEldev
More file actions
18 lines (14 loc) · 731 Bytes
/
Copy pathEldev
File metadata and controls
18 lines (14 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; -*- mode: emacs-lisp; lexical-binding: t -*-
(eldev-use-package-archive 'gnu-elpa)
(eldev-use-package-archive 'nongnu-elpa)
(eldev-use-package-archive 'melpa)
;; The test suite lives in `test/' and shares a small helper module that every
;; suite `require's, so put that directory on the load path when running tests.
(eldev-add-loading-roots 'test "test")
;; Buttercup is the test framework.
(eldev-add-extra-dependencies 'test 'buttercup)
;; `undercover' measures test coverage. The test suite instruments the
;; package with it (see `test/helm-projectile-test.el'), but it only does
;; anything under CI or when `UNDERCOVER_FORCE' is set, so local runs are
;; unaffected.
(eldev-add-extra-dependencies 'test 'undercover)