Skip to content

Commit e53c673

Browse files
committed
Switch author_full_name and author_email to be default
1 parent a122405 commit e53c673

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

project-template/cookiecutter.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"pypi_package_name": "exasol-{{cookiecutter.repo_name}}",
66
"import_package": "exasol.{{cookiecutter.package_name}}",
77
"description": "",
8-
"author_full_name": "{{cookiecutter.author_full_name}}",
9-
"author_email": "{{cookiecutter.author_email}}",
8+
"author_full_name": "Exasol AG",
9+
"author_email": "[email protected]",
1010
"project_short_tag": "",
1111
"python_version_min": "3.9",
1212
"license_year": "{% now 'utc', '%Y' %}",

test/integration/project-template/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ def new_project(cwd):
2020
subprocess.run(
2121
["cookiecutter", Config.root / "project-template", "-o", cwd, "--no-input",
2222
f"project_name={project_name}", f"repo_name={repo_name}",
23-
f"package_name={package_name}", "author_full_name=tester",
24-
23+
f"package_name={package_name}",
2524
], capture_output=True, check=True)
2625

2726
return cwd / repo_name

0 commit comments

Comments
 (0)