/AlexeyBrThis is what I have in .asd file for tests:But the problem is when I set them directly in .asd file, the CL reader complains what the prove.color and prove packages do not exist (which is true, since the prove dependency is not yet loaded).i.e.Using this framework I would like to set some special variables to control test execution _before_ running the asdf:test-systemThe test framework I use is the default for cl-project: prove.Hi all,I am using cl-project to generate project skeleton for the library including separate asd file for unit tests.
(setf prove.color:*enable-colors* nil)
(setf prove:*default-reporter* :tap)I could set them in every test file, but I would like to set them globally.How could I set them after the dependency to unit test library (prove) is loaded and therefore package exists?
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c) (asdf:clear-system c)))
(funcall (intern #.(string :run-test-system) :prove-asdf) c)