diff --git a/Dockerfile b/Dockerfile index 7f3a8fb..592bd61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY pyproject.toml poetry.lock ./ RUN <<__EOR__ 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__ FROM base as final diff --git a/poetry.lock b/poetry.lock index 80d73eb..8633840 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1032,4 +1032,4 @@ setuptools = "*" [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "3bd4cdaccfb862ebbd700443548e777fe40fbc7511a8d6a077d06052d4c6cd7f" +content-hash = "37314db960fecd6dc7fb012bb5dc659ccaa448e3d52069c9273387208eb9de6f" diff --git a/pyproject.toml b/pyproject.toml index 0322600..ab800ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,9 @@ pywinrm = "^0.4.3" [tool.poetry.dev-dependencies] ansible-lint = "^6.3.0" +[tool.poetry.group.dev.dependencies] +yamllint = "^1.29.0" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"