Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 3 additions & 13 deletions .github/workflows/chatbot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Chatbot CI
name: Chatbot CI

on:
push:
Expand All @@ -12,32 +12,22 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-latest

defaults:
run:
working-directory: chatbot

steps:
- uses: actions/checkout@v4
with:
submodules: true




- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: chatbot/requirements.txt


- name: Install dependencies
run: |
pip install -r requirements.txt


- name: Run unit and API tests
- name: Run unit and API tests
env:
JWT_SECRET_KEY: ${{ secrets.JWT_SECRET_KEY }}
run: pytest rag-engine/tests -q --tb=short --ignore=rag-engine/tests/test_injection_real_pdf.py
run: pytest rag-engine/tests -q --tb=short --ignore=rag-engine/tests/test_injection_real_pdf.py
Loading