-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcl-kraken.asd
executable file
·35 lines (33 loc) · 1.25 KB
/
cl-kraken.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;;; -*- mode: lisp; syntax: common-lisp; indent-tabs-mode: nil -*-
;;;; cl-kraken.asd
;;;; ASDF system definition for CL-Kraken
(defsystem "cl-kraken"
:name "CL-Kraken"
:author "Jon Atack <[email protected]>"
:description "A Common Lisp API client for the Kraken exchange"
:homepage "https://github.com/jonatack/cl-kraken"
:license "MIT"
:version "0.0.3"
:class :package-inferred-system
:depends-on ("cl-kraken/src/main")
:in-order-to ((test-op (test-op "cl-kraken/tests"))))
(defsystem "cl-kraken/tests"
:name "CL-Kraken tests"
:author "Jon Atack <[email protected]>"
:description "Unit tests for CL-Kraken"
:class :package-inferred-system
:depends-on ("rove"
"cl-kraken/tests/time"
"cl-kraken/tests/cryptography"
"cl-kraken/tests/http"
"cl-kraken/tests/asset-pairs"
"cl-kraken/tests/assets"
"cl-kraken/tests/depth"
"cl-kraken/tests/ohlc"
"cl-kraken/tests/server-time"
"cl-kraken/tests/spread"
"cl-kraken/tests/ticker"
"cl-kraken/tests/trades"
"cl-kraken/tests/balance"
"cl-kraken/tests/trade-volume")
:perform (test-op (op c) (symbol-call :rove '#:run c)))