From 6bceaa03928b61d09ebb26bb85b3ab51c8c7c414 Mon Sep 17 00:00:00 2001 From: Stephen Kent Date: Tue, 13 Jan 2026 22:22:48 -0800 Subject: [PATCH] Update project template cruft Applied updates from upstream project template commits: 9a783dd51cc0195a994c510e5f0eeb2d730a7e49...3047ece80faf76b9ad0af87a1ae132eaaae74ab2 * 3047ece Merge pull request #123 from smkent/ci |\ | * f86d59f Remove Python 3.9 from cookie-python CI config |/ * 502e129 Merge pull request #122 from smkent/pytest |\ | * e81361b Migrate pytest config in `pyproject.toml` to modern format |/ * b7b8e41 Merge pull request #121 from smkent/manage-cookie * 90d599a Update project template cruft, dependencies --- .cruft.json | 4 ++-- pyproject.toml | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.cruft.json b/.cruft.json index f4df2b4..9538f16 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": ".", - "commit": "9a783dd51cc0195a994c510e5f0eeb2d730a7e49", + "commit": "3047ece80faf76b9ad0af87a1ae132eaaae74ab2", "context": { "cookiecutter": { "project_name": "cookie-python", @@ -14,7 +14,7 @@ "author_email": "smkent@smkent.net", "github_user": "smkent", "_template": ".", - "_commit": "9a783dd51cc0195a994c510e5f0eeb2d730a7e49" + "_commit": "3047ece80faf76b9ad0af87a1ae132eaaae74ab2" } }, "directory": null, diff --git a/pyproject.toml b/pyproject.toml index 19433bb..a3b0df9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -113,15 +113,15 @@ warn_return_any = true show_error_codes = true warn_unused_ignores = true -[tool.pytest.ini_options] -testpaths = ["tests"] -addopts = """\ - --cov \ - --cov-append \ - --cov-report term \ - --cov-report xml:.pytest_coverage.xml \ - --junitxml=.pytest_results.xml \ -""" +[tool.pytest] +testpaths = ['tests'] +addopts = [ + "--cov", + "--cov-append", + "--cov-report=term", + "--cov-report=xml:.pytest_coverage.xml", + "--junitxml=.pytest_results.xml", +] [tool.ruff] target-version = "py310"