build: add yamllint as dev dep

This commit is contained in:
Price Hiller 2023-01-31 18:39:00 -06:00
parent bba31a395c
commit 75f16a5097
3 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,7 @@ COPY pyproject.toml poetry.lock ./
RUN <<__EOR__ RUN <<__EOR__
poetry config virtualenvs.in-project true poetry config virtualenvs.in-project true
poetry install --only=main --no-root --no-ansi --no-interaction poetry install --only=main,dev --no-root --no-ansi --no-interaction
__EOR__ __EOR__
FROM base as final FROM base as final

2
poetry.lock generated
View File

@ -1032,4 +1032,4 @@ setuptools = "*"
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = "^3.10" python-versions = "^3.10"
content-hash = "3bd4cdaccfb862ebbd700443548e777fe40fbc7511a8d6a077d06052d4c6cd7f" content-hash = "37314db960fecd6dc7fb012bb5dc659ccaa448e3d52069c9273387208eb9de6f"

View File

@ -12,6 +12,9 @@ pywinrm = "^0.4.3"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
ansible-lint = "^6.3.0" ansible-lint = "^6.3.0"
[tool.poetry.group.dev.dependencies]
yamllint = "^1.29.0"
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"