mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-12-15 16:10:39 +03:00
microservices are able to run (#5)
This commit is contained in:
6
.github/workflows/check-lint.yml
vendored
6
.github/workflows/check-lint.yml
vendored
@@ -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
|
||||
4
.github/workflows/poetry-test.yml
vendored
4
.github/workflows/poetry-test.yml
vendored
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user