X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=tests%2Ftests.lisp;h=dd609f08d865ef3a524355a155270e77568c7e19;hp=22e7f690f790d5cca04bf9968e0984331690b58d;hb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e;hpb=d26a88bb2cbd2bf5b1430b2f54e11fef252787fe diff --git a/tests/tests.lisp b/tests/tests.lisp index 22e7f69..dd609f0 100644 --- a/tests/tests.lisp +++ b/tests/tests.lisp @@ -55,7 +55,9 @@ (setf (pgsql-socket-spec specs) (cadr (assoc :postgresql-socket config))) specs)) - (warn "CLSQL tester config file ~S not found" path))) + (progn + (warn "CLSQL tester config file ~S not found" path) + nil))) (defmethod mysql-table-test ((test conn-specs)) (test-table (mysql-spec test) :mysql)) @@ -220,8 +222,11 @@ (defun drop-test-table (db) (clsql:execute-command "DROP TABLE test_clsql" :database db)) -(defun clsql-tests () +(defun run-tests () (let ((specs (read-specs))) + (unless specs + (warn "Not running test because test configuration file is missing") + (return-from run-tests :skipped)) (with-tests (:name "CLSQL") (mysql-low-level specs) (mysql-table-test specs) @@ -231,8 +236,3 @@ )) t) -;(deftest clsql.all (clsql-tests) t) -(clsql-tests) - - -