ci: replace poetry with pip install to fix root-level pyproject.toml issue
This commit is contained in:
19
.github/workflows/python-tests.yml
vendored
19
.github/workflows/python-tests.yml
vendored
@@ -19,18 +19,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
|
|
||||||
- name: Install Poetry
|
- name: Install dependencies
|
||||||
uses: snok/install-poetry@v1
|
run: |
|
||||||
with:
|
pip install --upgrade pip
|
||||||
version: '1.7.1'
|
pip install pytest pytest-asyncio httpx fastapi uvicorn pydantic pydantic-settings \
|
||||||
|
sqlalchemy aiosqlite sqlmodel python-dotenv slowapi orjson prometheus-client \
|
||||||
|
nacl pycryptodome argon2-cffi websockets
|
||||||
|
|
||||||
- name: Install coordinator-api dependencies
|
- name: Install aitbc-crypto package
|
||||||
working-directory: apps/coordinator-api
|
run: pip install -e packages/py/aitbc-crypto
|
||||||
run: poetry install --with dev
|
|
||||||
|
|
||||||
- name: Install blockchain-node dependencies
|
|
||||||
working-directory: apps/blockchain-node
|
|
||||||
run: poetry install --with dev
|
|
||||||
|
|
||||||
- name: Run coordinator-api tests
|
- name: Run coordinator-api tests
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user