Skip to content

Commit

Permalink
Moved the custom doc gen to tool.poetry.group.docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisgKent committed Mar 29, 2024
1 parent 222d523 commit 8f69b5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install with poetry
run: poetry install --without=dev
run: poetry install --with dev
- name: Poetry pytest
run: poetry run pytest
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ pydantic = "^2.4.2"
typer = {extras = ["all"], version = "^0.9.0"}
requests = "^2.31.0"

[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
typer-cli = {path = "../typer-cli"} # https://github.com/Patarimi/typer-cli/commit/f44b547a0b9ea71e5c7b2dc7d4c1ab1212394e5e
ruff = "^0.3.4"

[tool.poetry.group.docs.dependencies]
typer-cli = {path = "../typer-cli"} # https://github.com/Patarimi/typer-cli/commit/f44b547a0b9ea71e5c7b2dc7d4c1ab1212394e5e

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down

0 comments on commit 8f69b5f

Please sign in to comment.