Skip to content

Commit

Permalink
Start blueapi server in background of system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
callumforrester committed Dec 16, 2024
1 parent 3756342 commit 75cb3bb
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/_system_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Start RabbitMQ
uses: namoshek/rabbitmq-github-action@v1
with:
ports: "61613:61613"
plugins: rabbitmq_stomp

- name: Checkout
uses: actions/checkout@v4
with:
Expand All @@ -24,6 +18,15 @@ jobs:

- name: Install python packages
uses: ./.github/actions/install_requirements


- name: Start RabbitMQ
uses: namoshek/rabbitmq-github-action@v1
with:
ports: "61613:61613"
plugins: rabbitmq_stomp

- name: Start Blueapi Server
run: blueapi serve &

- name: Run tests
run: tox -e system-test

0 comments on commit 75cb3bb

Please sign in to comment.