From a5a99ade148a0ae52c07864d3c74de5d01afef95 Mon Sep 17 00:00:00 2001 From: 8baller <8ball030@gmail.com> Date: Thu, 9 Nov 2023 16:45:53 +0100 Subject: [PATCH] [ci] fixed --- .github/workflows/common_check.yaml | 3 +-- Makefile | 2 +- poetry.lock | 2 +- pyproject.toml | 10 ++++++---- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/common_check.yaml b/.github/workflows/common_check.yaml index 851cf92..617a7e2 100644 --- a/.github/workflows/common_check.yaml +++ b/.github/workflows/common_check.yaml @@ -46,8 +46,7 @@ jobs: - name: Lint run: | - poetry run adev lint -p tests - poetry run adev lint -p rysk_client + poetry run make lint - name: Tests run: | diff --git a/Makefile b/Makefile index de509a3..15dca40 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: tests tests: - pytest tests -vv + poetry run pytest tests -vv fmt: poetry run black tests lyra diff --git a/poetry.lock b/poetry.lock index 811be8b..8b3564e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1976,4 +1976,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.8.1,<=3.11.5" -content-hash = "8fbc5eeea02a50effad8503810bea385a0f14b255ef00f9d494405ef6cc266ad" +content-hash = "ea9b96450cd1d4cbcf7d6c9b6d9fa34e97174205f6a6b924356803ee59b88723" diff --git a/pyproject.toml b/pyproject.toml index 28b48f9..8b3614b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,11 +9,7 @@ packages = [{include = "lyra"}] [tool.poetry.dependencies] python = ">=3.8.1,<=3.11.5" requests = "^2.31.0" -pytest = "^7.4.2" web3 = "^5" -black = "^23.10.1" -isort = "^5.12.0" -flake8 = "^6.1.0" websocket-client = "^1.6.4" setuptools = "^68.2.2" rich-click = "^1.7.1" @@ -24,6 +20,12 @@ python-dotenv = ">=0.14.0,<0.18.0" lyra= "lyra.cli:cli" +[tool.poetry.group.dev.dependencies] +pytest = "^7.4.2" +black = "^23.10.1" +isort = "^5.12.0" +flake8 = "^6.1.0" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"