From 9df05a0dc311312ffbba6ea8402e5c1e6150eebb Mon Sep 17 00:00:00 2001 From: Deuchnord Date: Fri, 5 May 2023 13:13:14 +0200 Subject: [PATCH] chore(ci): fix CI (#64) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(ci): add info to help resolution of python-poetry/poetry#7611 * Fix pyproject config --------- Co-authored-by: Jérôme Deuchnord --- .github/workflows/tests.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 04c4966..516191f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,4 +1,4 @@ -name: Unit Tests +name: Tests on: push: @@ -40,7 +40,7 @@ jobs: env: PIP_PREFER_BINARY: 1 run: | - python3 -m poetry install + python3 -m poetry install --with=dev - name: Run doc tests run: | diff --git a/pyproject.toml b/pyproject.toml index 44232c8..7c209bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ skyfield = "^1.21" skyfield-data = ">=3,<6" python-dateutil = "^2.8" -[tool.poetry.dev-dependencies] +[tool.poetry.group.dev.dependencies] black = "^23.1" parameterized = "^0.9.0" coverage = "^6.1.2"