gnu: emacs-org-jira: Run tests.
* gnu/packages/emacs-xyz.scm (emacs-org-jira)[arguments]: Run tests.
This commit is contained in:
parent
1151a16ed1
commit
55d3bd84a1
1 changed files with 30 additions and 20 deletions
|
@ -31492,27 +31492,37 @@ contains a track position, playback will start at the specified position.")
|
||||||
|
|
||||||
(define-public emacs-org-jira
|
(define-public emacs-org-jira
|
||||||
(package
|
(package
|
||||||
(name "emacs-org-jira")
|
(name "emacs-org-jira")
|
||||||
(version "4.4.1")
|
(version "4.4.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/ahungry/org-jira")
|
(url "https://github.com/ahungry/org-jira")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1pkqyvziwp2573hnr8s41chsbm40564f76i3l8ynjr7955nccsms"))))
|
"1pkqyvziwp2573hnr8s41chsbm40564f76i3l8ynjr7955nccsms"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(arguments
|
||||||
(list emacs-dash emacs-org emacs-request))
|
(list
|
||||||
(home-page "https://github.com/ahungry/org-jira")
|
#:tests? #true
|
||||||
(synopsis "Syncing between Jira and Org mode")
|
#:test-command #~(list "emacs" "-Q" "--batch"
|
||||||
(description
|
"-l" "jiralib.el"
|
||||||
"This package provides an extension to Org mode for syncing issues with
|
"-l" "org-jira-sdk.el"
|
||||||
|
"-l" "org-jira.el"
|
||||||
|
"-l" "t/org-jira-t.el"
|
||||||
|
"-l" "t/jiralib-t.el"
|
||||||
|
"-f" "ert-run-tests-batch-and-exit")))
|
||||||
|
(propagated-inputs
|
||||||
|
(list emacs-dash emacs-org emacs-request))
|
||||||
|
(home-page "https://github.com/ahungry/org-jira")
|
||||||
|
(synopsis "Syncing between Jira and Org mode")
|
||||||
|
(description
|
||||||
|
"This package provides an extension to Org mode for syncing issues with
|
||||||
JIRA issue servers.")
|
JIRA issue servers.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-slime-volleyball
|
(define-public emacs-slime-volleyball
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue