Skip to content

Commit ecba045

Browse files
resolve conversation
1 parent 1be8f3c commit ecba045

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

project-template/{{cookiecutter.repo_name}}/README.md renamed to project-template/{{cookiecutter.repo_name}}/README.rst

File renamed without changes.

project-template/{{cookiecutter.repo_name}}/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "{{cookiecutter.description}}"
66
authors = [
77
{name = "{{cookiecutter.author_full_name}}", email = "{{cookiecutter.author_email}}"},
88
]
9-
readme = "README.md"
9+
readme = "README.rst"
1010
license = "MIT"
1111
keywords = ['exasol', '{{cookiecutter.package_name}}']
1212
dynamic = ["dependencies"]

test/integration/project-template/nox_test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,9 @@ def test_artifact_validate(self, poetry_path, run_command):
5252
output = run_command(artifacts_validate, check=False)
5353

5454
assert output.returncode == 0
55+
56+
def test_package_check(self, poetry_path, run_command):
57+
package_check = self._command(poetry_path, "package:check")
58+
output = run_command(package_check)
59+
60+
assert output.returncode == 0

0 commit comments

Comments
 (0)