Skip to content

Commit 726df11

Browse files
Remove end-to-end AI workflow test from CI
1 parent 023fcd3 commit 726df11

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

.github/workflows/ci-tests.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -356,31 +356,6 @@ jobs:
356356
python -m pytest test_main.py::TestQuizEndpoint::test_quiz_success -v
357357
python -m pytest test_main.py::TestFlashcardEndpoint::test_flashcard_success -v
358358
359-
- name: Test end-to-end AI workflow
360-
run: |
361-
# Test document loading
362-
DOCUMENT_RESPONSE=$(curl -X POST http://localhost:8081/document \
363-
-H "Content-Type: application/json" \
364-
-d '{"user_id":"test-user","document_name":"test.pdf","document_base64":"dGVzdCBjb250ZW50"}' \
365-
-s)
366-
367-
echo "Document response: $DOCUMENT_RESPONSE"
368-
369-
# Test chat functionality
370-
CHAT_RESPONSE=$(curl -X POST http://localhost:8081/chat \
371-
-H "Content-Type: application/json" \
372-
-d '{"user_id":"test-user","message":"Hello, how are you?"}' \
373-
-s)
374-
375-
echo "Chat response: $CHAT_RESPONSE"
376-
377-
# Test summary generation
378-
SUMMARY_RESPONSE=$(curl -X POST http://localhost:8081/summary \
379-
-H "Content-Type: application/json" \
380-
-d '{"user_id":"test-user","document_name":"test.pdf"}' \
381-
-s)
382-
383-
echo "Summary response: $SUMMARY_RESPONSE"
384359
385360
- name: Cleanup
386361
if: always()

0 commit comments

Comments
 (0)