forked from hraban/cl-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lift-standard.config
37 lines (28 loc) · 906 Bytes
/
lift-standard.config
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
36
37
;;; configuration for LIFT tests
;; settings
(:if-dribble-exists :supersede)
(:dribble "lift.dribble")
(:print-length 10)
(:print-level 5)
(:print-test-case-names t)
;; suites to run
(cl-graph-test)
;; report properties
(:report-property :title "CL-Graph | Test results")
(:report-property :relative-to lift-test)
(:report-property :style-sheet "test-style.css")
(:report-property :if-exists :supersede)
(:report-property :format :html)
(:report-property :name "test-results/test-report.html")
(:report-property :unique-name t)
(:build-report)
(:report-property :unique-name t)
(:report-property :format :describe)
(:report-property :name "test-results/test-report.txt")
(:build-report)
(:report-property :format :save)
(:report-property :name "test-results/test-report.sav")
(:build-report)
(:report-property :format :describe)
(:report-property :full-pathname *standard-output*)
(:build-report)