Skip to content

Commit 6bceaa0

Browse files
committed
Update project template cruft
Applied updates from upstream project template commits: 9a783dd...3047ece * 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
1 parent 3047ece commit 6bceaa0

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": ".",
3-
"commit": "9a783dd51cc0195a994c510e5f0eeb2d730a7e49",
3+
"commit": "3047ece80faf76b9ad0af87a1ae132eaaae74ab2",
44
"context": {
55
"cookiecutter": {
66
"project_name": "cookie-python",
@@ -14,7 +14,7 @@
1414
"author_email": "smkent@smkent.net",
1515
"github_user": "smkent",
1616
"_template": ".",
17-
"_commit": "9a783dd51cc0195a994c510e5f0eeb2d730a7e49"
17+
"_commit": "3047ece80faf76b9ad0af87a1ae132eaaae74ab2"
1818
}
1919
},
2020
"directory": null,

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ warn_return_any = true
113113
show_error_codes = true
114114
warn_unused_ignores = true
115115

116-
[tool.pytest.ini_options]
117-
testpaths = ["tests"]
118-
addopts = """\
119-
--cov \
120-
--cov-append \
121-
--cov-report term \
122-
--cov-report xml:.pytest_coverage.xml \
123-
--junitxml=.pytest_results.xml \
124-
"""
116+
[tool.pytest]
117+
testpaths = ['tests']
118+
addopts = [
119+
"--cov",
120+
"--cov-append",
121+
"--cov-report=term",
122+
"--cov-report=xml:.pytest_coverage.xml",
123+
"--junitxml=.pytest_results.xml",
124+
]
125125

126126
[tool.ruff]
127127
target-version = "py310"

0 commit comments

Comments
 (0)