@@ -113,50 +113,10 @@ start-llm-katan:
113113 @echo " Press Ctrl+C to stop servers"
114114 @./e2e-tests/start-llm-katan.sh
115115
116- # Legacy: Start mock vLLM servers for testing (foreground mode for development)
117- start-mock-vllm :
118- @echo " Starting mock vLLM servers in foreground mode..."
119- @echo " Press Ctrl+C to stop servers"
120- @./e2e-tests/start-mock-servers.sh
121-
122- # Start real vLLM servers for testing
123- start-vllm :
124- @echo " Starting real vLLM servers..."
125- @./e2e-tests/start-vllm-servers.sh
126-
127- # Stop real vLLM servers
128- stop-vllm :
129- @echo " Stopping real vLLM servers..."
130- @./e2e-tests/stop-vllm-servers.sh
131-
132116# Run e2e tests with LLM Katan (lightweight real models)
133117test-e2e-vllm :
134118 @echo " Running e2e tests with LLM Katan servers..."
135119 @echo " ⚠️ Note: Make sure LLM Katan servers are running with 'make start-llm-katan'"
136120 @python3 e2e-tests/run_all_tests.py
137121
138- # Legacy: Run e2e tests with mock vLLM (assumes mock servers already running)
139- test-e2e-mock :
140- @echo " Running e2e tests with mock vLLM servers..."
141- @echo " ⚠️ Note: Make sure mock servers are running with 'make start-mock-vllm'"
142- @python3 e2e-tests/run_all_tests.py --mock
143-
144- # Run e2e tests with real vLLM (assumes real servers already running)
145- test-e2e-real :
146- @echo " Running e2e tests with real vLLM servers..."
147- @echo " ⚠️ Note: Make sure real vLLM servers are running with 'make start-vllm'"
148- @python3 e2e-tests/run_all_tests.py --real
149-
150-
151- # Note: Automated tests not supported with foreground-only mock servers
152- # Use the manual workflow: make start-llm-katan in one terminal, then run tests in another
153-
154- # Full automated test with cleanup (for CI/CD)
155- test-e2e-real-automated : start-vllm
156- @echo " Running automated e2e tests with real vLLM servers..."
157- @sleep 5
158- @python3 e2e-tests/run_all_tests.py --real || ($( MAKE) stop-vllm && exit 1)
159- @$(MAKE ) stop-vllm
160-
161- # Run all e2e tests (LLM Katan, mock and real)
162- test-e2e-all : test-e2e-vllm test-e2e-mock test-e2e-real
122+ # Note: Use the manual workflow: make start-llm-katan in one terminal, then run tests in another
0 commit comments