commit 6620b82b091cdfed655e1093ef045dbe518d5474 from: Omar Polo date: Wed Jan 19 13:46:06 2022 UTC fix for asdf:test-system see github issue #8 commit - d9b03c3523a190a439a6e2417f75c5cdddd98313 commit + 6620b82b091cdfed655e1093ef045dbe518d5474 blob - 6857ea2646857c8eff711ebca2480cd56540554f blob + 3611d19b47dbbfae9128bc80df829f657c11aa67 --- phos.asd +++ phos.asd @@ -10,7 +10,8 @@ :components ((:file "package") (:file "phos") (:file "gemtext") - (:file "gemini"))) + (:file "gemini")) + :in-order-to ((test-op (test-op :phos/test)))) (asdf:defsystem #:phos/nodgui :description "An experimental GUI Gemini client" @@ -24,4 +25,6 @@ :pathname "t" :components ((:file "package") (:file "all-tests") - (:file "gemtext-tests"))) + (:file "gemtext-tests")) + :perform (test-op (op system) + (funcall (read-from-string "all-tests:run-all-tests"))))