Skip to content

Commit 08de545

Browse files
committed
TMP
1 parent 145dc71 commit 08de545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_new.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_creates_project_successfully(temp_project_dir: Path) -> None:
3737
def test_creates_project_with_python_version(temp_project_dir: Path) -> None:
3838
# Test long form
3939
result = runner.invoke(app, ["project_long", "--python", "3.12"])
40-
assert result.exit_code == 0
40+
assert result.exit_code == 0, result.output
4141
project_path = temp_project_dir / "project_long"
4242
_assert_project_created(project_path)
4343
assert "3.12" in (project_path / "pyproject.toml").read_text()

0 commit comments

Comments
 (0)