Skip to content

Commit

Permalink
Added e2e tests GH action, with docker compose build
Browse files Browse the repository at this point in the history
  • Loading branch information
dividor committed Jun 29, 2024
1 parent c104c98 commit 912a554
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,15 @@ jobs:
run: |
env > .env
docker buildx create --use --driver=docker-container
docker buildx bake -f ./docker-compose.yml --set *.cache-to="type=gha,mode=max" --set *.cache-from="type=gha" --load --set *.platform=linux/amd64
docker buildx bake -f ./docker-compose.yml -f docker-compose-dev.yml --set *.cache-to="type=gha,mode=max" --set *.cache-from="type=gha" --load --set *.platform=linux/amd64 recipedb datadb server promptflow
- name: Run the stack
run: |
env > .env
#docker-compose -f docker-compose.yml -f docker-compose-dev.yml up -d
docker compose -f docker-compose.yml -f docker-compose-dev.yml build recipedb datadb server promptflow
docker compose -f docker-compose.yml -f docker-compose-dev.yml start recipedb datadb server promptflow
docker ps
- name: Self tests (Integration)
- name: End to End tests using Promtpflow and chainlit code
run: |
set -e
if [ $(uname -s) = "Linux" ]; then
Expand Down

0 comments on commit 912a554

Please sign in to comment.