microservices are able to run (#5)

This commit is contained in:
Dmitry Afanasyev
2023-09-24 06:32:49 +03:00
committed by GitHub
parent 315284fc38
commit 7e995866ff
171 changed files with 676 additions and 425 deletions

View File

@@ -62,10 +62,10 @@ jobs:
- name: Analysing the code with mypy
run: |
source .venv/bin/activate
poetry run mypy app
poetry run mypy bot_microservice
- name: Analysing the code with flake8
run: |
poetry run flake8 app
poetry run flake8 bot_microservice
- name: Analysing code with isort
run: |
poetry run isort --check-only app
poetry run isort --check-only bot_microservice

View File

@@ -66,10 +66,10 @@ jobs:
- name: Run tests
run: |
source .venv/bin/activate
poetry run pytest -vv --exitfirst
poetry run pytest bot_microservice/ -vv --exitfirst
- name: Coverage report
run: |
poetry run coverage run -m pytest
poetry run coverage run -m pytest bot_microservice/
poetry run coverage report
- name: Extended checks
run: |