Skip to content

Commit 1b88520

Browse files
committed
Add cookiecutter as a dev dependency in the PTB
1 parent e171d67 commit 1b88520

File tree

3 files changed

+142
-16
lines changed

3 files changed

+142
-16
lines changed

poetry.lock

Lines changed: 140 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ typer = { extras = ["all"], version = ">=0.7.0" }
7070

7171
[tool.poetry.group.dev.dependencies]
7272
autoimport = "^1.4.0"
73+
cookiecutter = "^2.6.0"
7374

7475
[build-system]
7576
requires = ["poetry-core>=2.0.0"]
@@ -121,4 +122,4 @@ sphinx-multiversion = 'exasol.toolbox.sphinx.multiversion:main'
121122
[tool.sonar]
122123
projectKey = "com.exasol:python-toolbox"
123124
hostUrl = "https://sonarcloud.io"
124-
organization = "exasol"
125+
organization = "exasol"

test/integration/project-template/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def new_project(cwd):
1616
repo_name = "repo"
1717
package_name = "package"
1818

19-
subprocess.run(["pip", "install", "cookiecutter"], capture_output=True, check=True)
2019
subprocess.run(
2120
["cookiecutter", Config.root / "project-template", "-o", cwd, "--no-input",
2221
f"project_name={project_name}", f"repo_name={repo_name}",

0 commit comments

Comments
 (0)