Skip to content

Commit

Permalink
Actually use cl-coveralls not coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
libre-man committed May 24, 2020
1 parent 7f22d4e commit f33e3b8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions run-tests.bash
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#!/bin/bash

if [[ -n "$COVERALLS" ]]; then
cl -l unix-opts/tests -e '(values)'
cl -l cl-coveralls -e '(values)'

cl -l unix-opts/tests -l cl-coveralls \
-e '(progn
(ql:quickload :cl-coveralls)
(coveralls:with-coveralls ()
(unix-opts/tests:run)))'
(setf ql:*quickload-verbose* t)
(let (suc)
(cl-coveralls:with-coveralls ()
(setf suc (unix-opts/tests:run)))
(uiop:quit (if suc 0 1))))'

else
cl -l unix-opts/tests \
Expand Down

0 comments on commit f33e3b8

Please sign in to comment.