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 12965de
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 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 unix-opts/tests -l cl-coveralls \
cl -l cl-coveralls -e '(values)'

cl -l unix-opts/tests \
-e '(progn
(ql:quickload :cl-coveralls)
(coveralls:with-coveralls ()
(unix-opts/tests:run)))'
(ql:quickload "cl-coveralls")
(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 12965de

Please sign in to comment.