Hello.
The parenscript version in the previous quicklisp had 2 test suites:
(def-suite output-tests) (def-suite package-system-tests)
Current version defines 3 test suites:
(def-suite output-tests) (def-suite package-system-tests) (def-suite eval-tests)
I suggest to define one top-level test suite, which will include all the test suites:
(def-suite parenscript-tests) (def-suite output-tests :in parenscript-tests) (def-suite package-system-tests :in parenscript-tests) (def-suite eval-tests :in parenscript-tests)
It will help those how can not use ps-test::run-tests function.
For example in the cl-test-grid project I wan to have detailed test results - all the failed tests. Therefore I use eos:run directly.
Best regards, - Anton