From f33e3b8f599fe0b4b0de4036c32ef7b56d77e87c Mon Sep 17 00:00:00 2001 From: Thomas Schaper Date: Sun, 24 May 2020 19:12:10 +0200 Subject: [PATCH] Actually use cl-coveralls not coveralls --- run-tests.bash | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/run-tests.bash b/run-tests.bash index 0546db2..3967815 100755 --- a/run-tests.bash +++ b/run-tests.bash @@ -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 \