Skip to content

Commit

Permalink
Run E2E tests without compose
Browse files Browse the repository at this point in the history
  • Loading branch information
ilesoft committed Dec 6, 2024
1 parent e7e6760 commit 41d70e6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: start SUT
run: docker compose up --quiet-pull --detach --build
- name: build SUT
run: docker build -t kipa .
- name: Set up Python 3.12.1
uses: actions/setup-python@v5
with:
Expand All @@ -49,8 +49,10 @@ jobs:
python -m pip install --upgrade pip
pip install robotframework
pip install robotframework-seleniumlibrary
- name: start SUT
run: docker run -p 3000:3000 kipa
- name: wait SUT to start
run: while ! curl -s -f 'http://localhost:3000/kipa' ; do sleep 2; docker ps; done
run: while ! curl -s -f 'http://localhost:8000/kipa' ; do sleep 2; docker ps; done
shell: bash
- name: run robot
run: |
Expand Down

0 comments on commit 41d70e6

Please sign in to comment.