mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Require dash, org to run ERT tests for khoj.el
This commit is contained in:
parent
06df394d6c
commit
e9ca04af0d
2 changed files with 7 additions and 2 deletions
5
.github/workflows/test_khoj_el.yml
vendored
5
.github/workflows/test_khoj_el.yml
vendored
|
@ -42,7 +42,10 @@ jobs:
|
|||
(push '(\"melpa\" . \"https://melpa.org/packages/\") package-archives) \
|
||||
(package-initialize) \
|
||||
(unless package-archive-contents (package-refresh-contents)) \
|
||||
(unless (package-installed-p 'transient) (package-install 'transient)))" \
|
||||
(unless (package-installed-p 'transient) (package-install 'transient)) \
|
||||
(unless (package-installed-p 'dash) (package-install 'dash)) \
|
||||
(unless (package-installed-p 'org) (package-install 'org)) \
|
||||
)" \
|
||||
-l ert \
|
||||
-l ./src/interface/emacs/khoj.el \
|
||||
-l ./src/interface/emacs/tests/khoj-tests.el \
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Debanjum Singh Solanky <debanjum@gmail.com>
|
||||
;; Version: 0.0.0
|
||||
;; Package-Requires: ((emacs "27.1") (transient "0.3.0"))
|
||||
;; Package-Requires: ((emacs "27.1") (transient "0.3.0") (dash "2.19.1") (org "9.0.0"))
|
||||
;; URL: https://github.com/debanjum/khoj/tree/master/src/interface/emacs
|
||||
|
||||
;;; License:
|
||||
|
@ -28,8 +28,10 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(require 'dash)
|
||||
(require 'ert)
|
||||
(require 'khoj)
|
||||
(require 'org)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue