Skip to content

Commit e5f784b

Browse files
committed
test
1 parent f67b556 commit e5f784b

File tree

5 files changed

+9
-51
lines changed

5 files changed

+9
-51
lines changed

.github/workflows/ci-test.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ jobs:
1010
- name: Checkout Repository
1111
uses: actions/checkout@v3
1212
- name: Run Tests
13+
env:
14+
COVERALLS: 'true'
15+
COVERALLS_REPO_TOKEN: 'COVERALLS_REPO_TOKEN=AjlQRo6hsAc6TsTv0tTXXW1AWR0MuFJQP'
1316
run: |
1417
set -ex
1518
sbcl --disable-debugger \
1619
--load /root/quicklisp/setup.lisp \
1720
--eval '(ql:update-all-dists)' \
1821
--load rope.asd \
19-
--eval '(ql:quickload :rope/test)' \
20-
--eval '(asdf:test-system :rope/test)' \
22+
--eval '(ql:quickload :rope/test :silent t)' \
23+
--eval '(coveralls:with-coveralls () (asdf:test-system :rope/test))' \
2124
--eval '(quit)'

benchmark/insert.lisp

-39
This file was deleted.

benchmark/package.lisp

-2
This file was deleted.

dev/package.lisp

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
;; graphviz.lisp
55
#:graph-ropes
66
;; benchmark.lisp
7+
#:benchmark-insert
78
))

rope.asd

+3-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:in-order-to ((test-op (test-op #:rope/test))))
88

99
(asdf:defsystem #:rope/test
10-
:depends-on (#:alexandria #:fiasco #:rope)
10+
:depends-on (#:alexandria #:fiasco #:cl-coveralls #:rope)
1111
:components ((:module "test"
1212
:components ((:file "basic")
1313
(:file "fuzz"))))
@@ -20,14 +20,9 @@
2020
(print result)
2121
(assert (eql t stat)))))
2222

23-
(asdf:defsystem #:rope/benchmark
24-
:depends-on (#:rope)
25-
:components ((:module "benchmark"
26-
:components ((:file "package")
27-
(:file "insert")))))
28-
2923
(asdf:defsystem #:rope/dev
3024
:depends-on (#:cl-dot #:rope)
3125
:components ((:module "dev"
3226
:components ((:file "package")
33-
(:file "graphviz")))))
27+
(:file "graphviz")
28+
(:file "benchmark")))))

0 commit comments

Comments
 (0)