fix(chaos): standardize test tangle paths to ../tests/ for deployment

This commit is contained in:
2026-04-28 19:42:45 -04:00
parent 553c93e2c7
commit a616c509ca
10 changed files with 10 additions and 10 deletions

View File

@@ -165,7 +165,7 @@ The Act stage is where cognition meets reality. After the Probabilistic engine p
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/pipeline-act-tests.lisp #+begin_src lisp :tangle ../tests/pipeline-act-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -91,7 +91,7 @@ The ~communication.lisp~ module defines the low-level transport and framing logi
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/communication-tests.lisp #+begin_src lisp :tangle ../tests/communication-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -154,7 +154,7 @@ The *Context API* (Peripheral Vision) provides the opencortex with the ability t
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/peripheral-vision-tests.lisp #+begin_src lisp :tangle ../tests/peripheral-vision-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -128,7 +128,7 @@ The Metabolic Loop is the fundamental rhythm of OpenCortex: the continuous proce
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/immune-system-tests.lisp #+begin_src lisp :tangle ../tests/immune-system-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -149,7 +149,7 @@ The Memory module is the cognitive bedrock of the opencortex. It is not a databa
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/memory-tests.lisp #+begin_src lisp :tangle ../tests/memory-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -95,7 +95,7 @@ The Perceive stage is the "sensory cortex" of OpenCortex. Its job is to take raw
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/pipeline-perceive-tests.lisp #+begin_src lisp :tangle ../tests/pipeline-perceive-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -164,7 +164,7 @@ The Reason stage implements the core Innovation of OpenCortex: the separation of
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/pipeline-reason-tests.lisp #+begin_src lisp :tangle ../tests/pipeline-reason-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -207,7 +207,7 @@ The ~opencortex~ Skill Engine enables **Late-Binding Intelligence**, allowing th
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/boot-sequence-tests.lisp #+begin_src lisp :tangle ../tests/boot-sequence-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))

View File

@@ -7,7 +7,7 @@
The OpenCortex TUI Client is a standalone Common Lisp application built on **Croatoan**. The OpenCortex TUI Client is a standalone Common Lisp application built on **Croatoan**.
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/tui-tests.lisp #+begin_src lisp :tangle ../tests/tui-tests.lisp
(defpackage :opencortex-tui-tests (defpackage :opencortex-tui-tests
(:use :cl :opencortex) (:use :cl :opencortex)
(:export #:tui-suite)) (:export #:tui-suite))

View File

@@ -35,7 +35,7 @@ The *LLM Gateway* skill provides a unified interface for interacting with multip
#+end_src #+end_src
* Test Suite * Test Suite
#+begin_src lisp :tangle tests/llm-gateway-tests.lisp #+begin_src lisp :tangle ../tests/llm-gateway-tests.lisp
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :fiveam :silent t)) (ql:quickload :fiveam :silent t))