Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cookiecutter template #36

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Cookiecutter template #36

wants to merge 3 commits into from

Conversation

tony
Copy link
Member

@tony tony commented Mar 15, 2025

Summary by Sourcery

This pull request introduces a cookiecutter template for generating Python CLI tools. The template allows users to configure various aspects of their project, including the project name, description, author information, license, VCS support, and inclusion of tests, documentation, and GitHub Actions workflows. It also adds a test suite to verify the template's functionality.

Tests:

  • Adds a comprehensive test suite using pytest-cookies to verify the template's functionality, covering various scenarios such as default template generation, test execution in generated projects, VCS path registry, license file generation, GitHub Actions workflow creation, documentation creation, pyproject.toml configuration, README badge inclusion, and package structure.
  • Adds pytest-cookies as a test dependency.

Copy link

sourcery-ai bot commented Mar 15, 2025

Reviewer's Guide by Sourcery

This pull request implements a cookiecutter template for generating Python projects. It includes tests using pytest-cookies, a post-generation hook script for license and directory creation, a pyproject.toml template for project configuration, a README.md template, and the initial package structure with __init__.py and __about__.py files. The cookiecutter.json file is also updated with project configuration options.

Sequence diagram for post-generation hook execution

sequenceDiagram
    participant User
    participant Cookiecutter
    participant post_gen_project.py
    participant FileSystem

    User->>Cookiecutter: Generate project
    Cookiecutter->>post_gen_project.py: Execute post-generation hook
    post_gen_project.py->>FileSystem: Check license type
    alt license_type is MIT
        post_gen_project.py->>FileSystem: Generate MIT license file
        FileSystem-->>post_gen_project.py: License file created
    else license_type is BSD-3
        post_gen_project.py->>FileSystem: Generate BSD-3 license file
        FileSystem-->>post_gen_project.py: License file created
    else license_type is GPL-3.0
        post_gen_project.py->>FileSystem: Generate GPL-3.0 license file
        FileSystem-->>post_gen_project.py: License file created
    else license_type is Apache-2.0
        post_gen_project.py->>FileSystem: Generate Apache-2.0 license file
        FileSystem-->>post_gen_project.py: License file created
    else
        post_gen_project.py->>User: Print unsupported license type
    end
    post_gen_project.py->>FileSystem: Check include_tests
    alt include_tests is 'y'
        post_gen_project.py->>FileSystem: Create tests directory and __init__.py
        FileSystem-->>post_gen_project.py: Directory and file created
        post_gen_project.py->>FileSystem: Create basic test file
        FileSystem-->>post_gen_project.py: Test file created
    end
    post_gen_project.py->>FileSystem: Check include_docs
    alt include_docs is 'y'
        post_gen_project.py->>FileSystem: Create docs directory and index.md
        FileSystem-->>post_gen_project.py: Directory and file created
    end
    post_gen_project.py->>FileSystem: Check include_github_actions
    alt include_github_actions is 'y'
        post_gen_project.py->>FileSystem: Create .github/workflows directory and tests.yml
        FileSystem-->>post_gen_project.py: Directory and file created
    end
    post_gen_project.py->>User: Print success message
    Cookiecutter-->>User: Project generated
Loading

Class diagram for the generated project structure

classDiagram
    class Project {
        +__init__.py
        +__about__.py
        +README.md
        +pyproject.toml
        +tests/
        +docs/
        +.github/workflows/
        +LICENSE
    }

    class pyproject_toml {
        +name
        +version
        +description
        +requires-python
        +authors
        +license
        +classifiers
        +packages
        +include
        +readme
        +keywords
        +homepage
        +urls
        +scripts
        +tool.uv
        +dependency-groups
        +build-system
        +tool.mypy
        +tool.ruff
        +tool.pytest.ini_options
        +tool.pytest-watcher
        +tool.coverage.report
    }

    class __init__.py {
        +find_repo_type()
        +run()
    }

    class __about__.py {
        +__title__
        +__package_name__
        +__description__
        +__version__
        +__author__
        +__github__
        +__docs__
        +__tracker__
        +__pypi__
        +__email__
        +__license__
        +__copyright__
    }

    Project -- pyproject_toml : contains
    Project -- __init__.py : contains
    Project -- __about__.py : contains
Loading

File-Level Changes

Change Details Files
Added pytest-cookies to the development and testing dependencies.
  • Added pytest-cookies to dev-dependencies in pyproject.toml.
  • Added pytest-cookies to testing in pyproject.toml.
pyproject.toml
Implemented tests for the cookiecutter template using pytest-cookies.
  • Added tests to verify project generation with default options.
  • Added tests to verify running tests in the baked project.
  • Added tests to verify VCS path registry creation for different VCS combinations (git, svn, hg).
  • Added tests to verify license file creation for different license types (MIT, BSD-3, GPL-3.0, Apache-2.0).
  • Added tests to verify GitHub Actions workflow creation.
  • Added tests to verify documentation creation.
  • Added tests to verify pyproject.toml configuration.
  • Added tests to verify README badges inclusion/exclusion.
  • Added tests to verify Python package structure.
tests/test_cookiecutter.py
tests/README.md
Implemented a post-generation hook script to handle license generation, test directory creation, documentation directory creation, and GitHub Actions workflow creation.
  • Added functions to generate license files for MIT, BSD-3, GPL-3.0, and Apache-2.0 licenses.
  • Added logic to create a test directory with an __init__.py and a basic test file if tests are included.
  • Added logic to create a docs directory with an index.md file if docs are included.
  • Added logic to create GitHub Actions workflows if included.
  • Added a print statement to indicate successful project generation.
hooks/post_gen_project.py
Created a pyproject.toml template file for the generated project.
  • Configured project metadata including name, version, description, authors, license, and classifiers.
  • Configured project URLs for bug tracker, documentation, repository, and changes.
  • Configured project scripts for the CLI entrypoint.
  • Configured uv settings for development dependencies, including docs, testing, coverage, and linting.
  • Configured mypy settings for strict type checking.
  • Configured ruff settings for linting, including selected rules, ignored rules, and per-file ignores.
  • Configured pytest settings for test options, test paths, and filter warnings.
  • Configured pytest-watcher settings to enable now mode and ignore patterns.
  • Configured coverage settings to exclude certain code patterns from coverage reports.
{{cookiecutter.project_slug}}/pyproject.toml
Created a README.md template file for the generated project.
  • Added project description and installation instructions.
  • Added badges for Python Package, Docs, Build Status, Code Coverage, and License.
  • Added sections for developmental releases, more information, and links to relevant resources.
{{cookiecutter.project_slug}}/README.md
Created the initial package structure with __init__.py and __about__.py files.
  • Added find_repo_type function to detect the repository type by looking upwards in the directory tree.
  • Added run function as the CLI entrypoint, which executes the appropriate VCS command.
  • Added logic to handle environment variables for testing.
  • Added metadata variables such as title, package name, description, version, author, and license.
{{cookiecutter.project_slug}}/src/{{cookiecutter.package_name}}/__init__.py
{{cookiecutter.project_slug}}/src/{{cookiecutter.package_name}}/__about__.py
Updated the cookiecutter.json file with project configuration options.
  • Added variables for project name, version, description, author, license, and other metadata.
  • Added options to include tests, documentation, and GitHub Actions workflows.
  • Added a list of supported VCS options (git, svn, hg).
cookiecutter.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @tony - I've reviewed your changes - here's some feedback:

Overall Comments:

  • Consider adding a CI workflow to automatically run the cookiecutter tests on pull requests.
Here's what I looked at during the review
  • 🟡 General issues: 3 issues found
  • 🟢 Security: all looks good
  • 🟡 Testing: 3 issues found
  • 🟡 Complexity: 1 issue found
  • 🟢 Documentation: all looks good

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment on lines +74 to +75
assert isinstance(cmd_args, (tuple, list))
assert isinstance(cmd, (str, bytes, pathlib.Path))
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (bug_risk): Avoid using assert for type checking in production code.

Assertions might be disabled in optimized mode. Using explicit type checks and raising appropriate exceptions would help ensure the function behaves robustly in all environments.

Suggested change
assert isinstance(cmd_args, (tuple, list))
assert isinstance(cmd, (str, bytes, pathlib.Path))
if not isinstance(cmd_args, (tuple, list)):
raise TypeError("cmd_args must be a tuple or list")
if not isinstance(cmd, (str, bytes, pathlib.Path)):
raise TypeError("cmd must be a str, bytes, or pathlib.Path")

Comment on lines +78 to +81
if wait:
proc.wait()
else:
proc.communicate()
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: Clarify the behavior of the wait flag in the run() function.

Since proc.communicate() will wait for the process to finish, even when wait is False, it may be worth revisiting this logic if the intention was to allow non-blocking execution in that branch.

Comment on lines +42 to +51
def test_bake_and_run_tests(cookies: Any) -> None:
"""Test running the tests in the baked project."""
result = cookies.bake(extra_context={
"project_name": "test_cli",
"include_tests": "y",
"project_description": "Test CLI tool for developers",
"supported_vcs": "git" # Use a single VCS to avoid format issues
})

assert result.exit_code == 0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (testing): More robust test execution

Instead of just checking if test_result is not None, assert on the specific expected output or exit code of the test run. This will make the test more precise and catch potential regressions.

Comment on lines +69 to +78
def test_vcspath_registry_creation(cookies: Any) -> None:
"""Test proper creation of vcspath_registry for different VCS combinations."""
# Test with git VCS supported
result = cookies.bake(extra_context={
"project_name": "vcs_all",
"supported_vcs": "git"
})

assert result.exit_code == 0
assert result.exception is None
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (testing): Test unsupported VCS

Add a test case where an unsupported VCS is specified in the cookiecutter options. Verify that the generated project handles this gracefully, either by raising an error or defaulting to a sensible behavior.

Suggested implementation:

    assert result.exception is None

    # Test with unsupported VCS provided.
    unsupported_result = cookies.bake(extra_context={
        "project_name": "vcs_unsupported",
        "supported_vcs": "unsupported_vcs"
    })

    # Check if cookiecutter fails gracefully or defaults to a sensible behavior.
    if unsupported_result.exit_code != 0:
        # If it failed, ensure an exception was raised.
        assert unsupported_result.exception is not None
    else:
        # If it defaults, verify that a default configuration was applied.
        # For instance, assume it creates a file "vcspath_registry.txt" with default VCS.
        import os
        default_registry_path = os.path.join(unsupported_result.project_path, "vcspath_registry.txt")
        assert os.path.exists(default_registry_path)

Verify that the project code under test actually handles unsupported VCS values by either raising an error or applying default behavior. Adjust the file name or assertions (such as checking a specific file or config) according to your project's implementation.

Comment on lines +262 to +271
def test_readme_badges(cookies: Any) -> None:
"""Test that README badges are correctly included/excluded."""
# Test with all features enabled
result = cookies.bake(extra_context={
"project_name": "full_project",
"include_docs": "y",
"include_github_actions": "y"
})

assert result.exit_code == 0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (testing): Test badge URLs

Instead of just checking for the presence of badge placeholders, verify that the generated README contains the correct URLs for the badges, especially for dynamic badges like code coverage and build status.

$ {{cookiecutter.package_name}}
```

### Developmental releases
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question (typo): Possible typo

Should "Developmental releases" be "Development releases"?

Suggested change
### Developmental releases
### Development releases

year = datetime.datetime.now().year


def generate_mit_license():
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (complexity): Consider creating a single function to write the license file, and storing the license texts in a dictionary to avoid code duplication and improve maintainability

Consider combining the duplicated license file writing into one helper that accepts the license text. For example:

def write_license(license_text: str):
    with open("LICENSE", "w") as f:
        f.write(license_text)

licenses = {
    "MIT": f"""MIT License

Copyright (c) {year} {author}

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
""",
    "BSD-3": f"""BSD 3-Clause License

Copyright (c) {year}, {author}
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors 
   may be used to endorse or promote products derived from this software without 
   specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
""",
    "GPL-3.0": f"""Copyright (C) {year} {author}

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.
""",
    "Apache-2.0": f"""                                 Apache License
                            Version 2.0, January 2004
                         http://www.apache.org/licenses/

   Copyright {year} {author}

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
""",
}

if license_type in licenses:
    write_license(licenses[license_type])
else:
    print(f"Unsupported license type: {license_type}")

This approach centralizes license generation and minimizes code repetition while keeping functionality intact.

Comment on lines +136 to +171
if "{{cookiecutter.include_tests}}" == "y":
if not os.path.exists("tests"):
os.makedirs("tests")
with open("tests/__init__.py", "w") as f:
f.write("""Test package for {{cookiecutter.package_name}}.""")

# Create a basic test file
with open("tests/test_cli.py", "w") as f:
f.write("""#!/usr/bin/env python
\"\"\"Test CLI for {{cookiecutter.package_name}}.\"\"\"

from __future__ import annotations

import os
import pathlib
import subprocess
import sys

import pytest

import {{cookiecutter.package_name}}


def test_run():
\"\"\"Test run.\"\"\"
# Test that the function doesn't error
proc = {{cookiecutter.package_name}}.run(cmd="echo", cmd_args=["hello"])
assert proc is None

# Test when G_IS_TEST is set, it returns the proc
os.environ["{{cookiecutter.package_name.upper()}}_IS_TEST"] = "1"
proc = {{cookiecutter.package_name}}.run(cmd="echo", cmd_args=["hello"])
assert isinstance(proc, subprocess.Popen)
assert proc.returncode == 0
del os.environ["{{cookiecutter.package_name.upper()}}_IS_TEST"]
""")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (code-quality): Merge nested if conditions (merge-nested-ifs)

Suggested change
if "{{cookiecutter.include_tests}}" == "y":
if not os.path.exists("tests"):
os.makedirs("tests")
with open("tests/__init__.py", "w") as f:
f.write("""Test package for {{cookiecutter.package_name}}.""")
# Create a basic test file
with open("tests/test_cli.py", "w") as f:
f.write("""#!/usr/bin/env python
\"\"\"Test CLI for {{cookiecutter.package_name}}.\"\"\"
from __future__ import annotations
import os
import pathlib
import subprocess
import sys
import pytest
import {{cookiecutter.package_name}}
def test_run():
\"\"\"Test run.\"\"\"
# Test that the function doesn't error
proc = {{cookiecutter.package_name}}.run(cmd="echo", cmd_args=["hello"])
assert proc is None
# Test when G_IS_TEST is set, it returns the proc
os.environ["{{cookiecutter.package_name.upper()}}_IS_TEST"] = "1"
proc = {{cookiecutter.package_name}}.run(cmd="echo", cmd_args=["hello"])
assert isinstance(proc, subprocess.Popen)
assert proc.returncode == 0
del os.environ["{{cookiecutter.package_name.upper()}}_IS_TEST"]
""")
if "{{cookiecutter.include_tests}}" == "y" and not os.path.exists("tests"):
os.makedirs("tests")
with open("tests/__init__.py", "w") as f:
f.write("""Test package for {{cookiecutter.package_name}}.""")
# Create a basic test file
with open("tests/test_cli.py", "w") as f:
f.write("""#!/usr/bin/env python
\"\"\"Test CLI for {{cookiecutter.package_name}}.\"\"\"
from __future__ import annotations
import os
import pathlib
import subprocess
import sys
import pytest
import {{cookiecutter.package_name}}
def test_run():
\"\"\"Test run.\"\"\"
# Test that the function doesn't error
proc = {{cookiecutter.package_name}}.run(cmd="echo", cmd_args=["hello"])
assert proc is None
# Test when G_IS_TEST is set, it returns the proc
os.environ["{{cookiecutter.package_name.upper()}}_IS_TEST"] = "1"
proc = {{cookiecutter.package_name}}.run(cmd="echo", cmd_args=["hello"])
assert isinstance(proc, subprocess.Popen)
assert proc.returncode == 0
del os.environ["{{cookiecutter.package_name.upper()}}_IS_TEST"]
""")


ExplanationToo much nesting can make code difficult to understand, and this is especially
true in Python, where there are no brackets to help out with the delineation of
different nesting levels.

Reading deeply nested code is confusing, since you have to keep track of which
conditions relate to which levels. We therefore strive to reduce nesting where
possible, and the situation where two if conditions can be combined using
and is an easy win.

Comment on lines +174 to +195
if "{{cookiecutter.include_docs}}" == "y":
if not os.path.exists("docs"):
os.makedirs("docs")
with open("docs/index.md", "w") as f:
f.write("""# {{cookiecutter.project_name}}

{{cookiecutter.project_description}}

## Installation

```bash
pip install {{cookiecutter.package_name}}
```

## Usage

```bash
{{cookiecutter.package_name}}
```

This will detect the type of repository in your current directory and run the appropriate VCS command.
""")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (code-quality): Merge nested if conditions (merge-nested-ifs)

Suggested change
if "{{cookiecutter.include_docs}}" == "y":
if not os.path.exists("docs"):
os.makedirs("docs")
with open("docs/index.md", "w") as f:
f.write("""# {{cookiecutter.project_name}}
{{cookiecutter.project_description}}
## Installation
```bash
pip install {{cookiecutter.package_name}}
```
## Usage
```bash
{{cookiecutter.package_name}}
```
This will detect the type of repository in your current directory and run the appropriate VCS command.
""")
if "{{cookiecutter.include_docs}}" == "y" and not os.path.exists("docs"):
os.makedirs("docs")
with open("docs/index.md", "w") as f:
f.write("""# {{cookiecutter.project_name}}
{{cookiecutter.project_description}}
## Installation
```bash
pip install {{cookiecutter.package_name}}
```
## Usage
```bash
{{cookiecutter.package_name}}
```
This will detect the type of repository in your current directory and run the appropriate VCS command.
""")


ExplanationToo much nesting can make code difficult to understand, and this is especially
true in Python, where there are no brackets to help out with the delineation of
different nesting levels.

Reading deeply nested code is confusing, since you have to keep track of which
conditions relate to which levels. We therefore strive to reduce nesting where
possible, and the situation where two if conditions can be combined using
and is an easy win.

Comment on lines +198 to +233
if "{{cookiecutter.include_github_actions}}" == "y":
if not os.path.exists(".github/workflows"):
os.makedirs(".github/workflows")
with open(".github/workflows/tests.yml", "w") as f:
f.write("""name: tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ "{{" }} matrix.python-version {{ "}}" }}
uses: actions/setup-python@v4
with:
python-version: ${{ "{{" }} matrix.python-version {{ "}}" }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install -e .
uv pip install pytest pytest-cov
- name: Test with pytest
run: |
uv pip install pytest
pytest
""")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (code-quality): Merge nested if conditions (merge-nested-ifs)

Suggested change
if "{{cookiecutter.include_github_actions}}" == "y":
if not os.path.exists(".github/workflows"):
os.makedirs(".github/workflows")
with open(".github/workflows/tests.yml", "w") as f:
f.write("""name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ "{{" }} matrix.python-version {{ "}}" }}
uses: actions/setup-python@v4
with:
python-version: ${{ "{{" }} matrix.python-version {{ "}}" }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install -e .
uv pip install pytest pytest-cov
- name: Test with pytest
run: |
uv pip install pytest
pytest
""")
if "{{cookiecutter.include_github_actions}}" == "y" and not os.path.exists(".github/workflows"):
os.makedirs(".github/workflows")
with open(".github/workflows/tests.yml", "w") as f:
f.write("""name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ "{{" }} matrix.python-version {{ "}}" }}
uses: actions/setup-python@v4
with:
python-version: ${{ "{{" }} matrix.python-version {{ "}}" }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install -e .
uv pip install pytest pytest-cov
- name: Test with pytest
run: |
uv pip install pytest
pytest
""")


ExplanationToo much nesting can make code difficult to understand, and this is especially
true in Python, where there are no brackets to help out with the delineation of
different nesting levels.

Reading deeply nested code is confusing, since you have to keep track of which
conditions relate to which levels. We therefore strive to reduce nesting where
possible, and the situation where two if conditions can be combined using
and is an easy win.

@tony tony force-pushed the cookiecutter-template branch 3 times, most recently from 53d9379 to 9949967 Compare March 29, 2025 10:39
@tony tony force-pushed the cookiecutter-template branch from 9949967 to 943f069 Compare April 5, 2025 08:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant