(in-package :asdf-user) (defsystem "ritherdon-archive-tests" :description "Test suite for the ritherdon-archive system" :author "Craig Oates " :version "0.0.0" :depends-on (:ritherdon-archive :parachute) :license "MIT" :serial t :components ((:module "tests" :serial t :components ((:file "packages") (:file "test-ritherdon-archive")))) :perform (test-op (op s) (symbol-call :parachute :test :tests)) ;; The following would not return the right exit code on error, but still 0. ;; :perform (test-op (op _) (symbol-call :fiveam :run-all-tests)) )