File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 2121 needs : ci # wait for build to complete before running
2222 uses : ./.github/workflows/cd_kubernetes.yml
2323 secrets : # Pass KUBECONFIG to called workflow
24- KUBECONFIG : ${{ secrets.KUBECONFIG }}
24+ KUBECONFIG : ${{ secrets.KUBECONFIG }}
25+
26+ integration_tests :
27+ name : Integration Tests
28+ needs : cd_kubernetes # wait for deployment to complete before running
29+ uses : ./.github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change 1+ name : Integration Tests
2+
3+ on :
4+ workflow_call :
5+
6+ jobs :
7+ genai-tests :
8+ runs-on : ubuntu-latest
9+ env :
10+ GATEWAY_BASE_URL : api.meetatmensa.com
11+ steps :
12+ - name : Checkout code
13+ uses : actions/checkout@v3
14+
15+ - name : Set up Python
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : ' 3.11'
19+
20+ - name : Install dependencies
21+ run : |
22+ python -m pip install --upgrade pip
23+ pip install -r server/genai/requirements.txt
24+ pip install pytest
25+
26+ - name : Run GenAI tests
27+ run : PYTHONPATH=server/genai pytest -v
You can’t perform that action at this time.
0 commit comments