Skip to content

Wait for service to be ready for the end to end tests #11

Wait for service to be ready for the end to end tests

Wait for service to be ready for the end to end tests #11

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install venv
run: make install_venv
- name: Lint with black
run: make check_format
- name: Start service
run: make start_detached
- name: Wait for service to start
run: make wait_for_service
- name: Test with unittest
run: make test