Skip to content

[Enhancement]: Integration Tests for Evaluation #284

[Enhancement]: Integration Tests for Evaluation

[Enhancement]: Integration Tests for Evaluation #284

name: Run Backend tests
on: [pull_request]
jobs:
continous_integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Environment Variables
run: |
echo "OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }}" >> $GITHUB_ENV
- name: Install Curl
run: sudo apt install curl -y
- name: Start Docker Compose
run: OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }} ENVIRONMENT=github docker-compose -f "docker-compose.test.yml" up -d --build
- name: Restart Backend Service To Fetch Template Images
run: docker container restart agenta-backend-test
- name: Check Templates Exists
run: |
curl -s http://localhost:8000/containers/templates/
curl -s http://localhost:80/api/containers/templates/
curl -s http://localhost:8000/api/containers/templates/
# - name: Wait for Backend Service
# run: |
# while true; do
# if curl -s http://localhost/api/openapi.json; then
# break
# fi
# sleep 5
# done
# - name: Run tests
# run: docker exec agenta-backend-test pytest
- name: Docker logs
if: always() #
run: docker ps -q | xargs -I {} docker logs {}
- name: Stop Docker Compose
run: docker-compose down