Remove import for end to end tests #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 dependencies | |
run: pip3 install black pytest PyRSMQ==0.5.1 redis==5.0.7 requests==2.32.3 graypy==2.1.0 httpx==0.27.0 pydantic==2.9.2 | |
- name: Lint with black | |
run: black --line-length 125 . --check | |
- name: Free up space | |
run: make free_up_space | |
- name: Start service | |
run: make start_detached | |
- name: Check API ready | |
uses: emilioschepis/[email protected] | |
with: | |
url: http://localhost:5051 | |
method: GET | |
expected-status: 200 | |
timeout: 120000 | |
interval: 500 | |
- name: Test with unittest | |
run: cd src; python3 -m pytest |