-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (35 loc) · 1.12 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# 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