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 005c8a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 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,6 +49,8 @@ jobs:
python -m pip install --upgrade pip
pip install robotframework
pip install robotframework-seleniumlibrary
- name: start SUT
run: docker run -d -p 3000:3000 kipa
- name: wait SUT to start
run: while ! curl -s -f 'http://localhost:3000/kipa' ; do sleep 2; docker ps; done
shell: bash
Expand Down

0 comments on commit 005c8a9

Please sign in to comment.