Skip to content

Commit 0d47637

Browse files
authored
packaging(pytest): Move configuration to pyproject.toml (#421)
2 parents ec6817c + c1cac82 commit 0d47637

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
2121

2222
<!-- Maintainers, insert changes / features for the next release here -->
2323

24+
### Breaking changes
25+
26+
- Python 3.7 Dropped (#421)
27+
2428
## vcspull v1.22.0 (2023-09-02)
2529

2630
_Maintenance only, no bug fixes, or new features_

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,17 @@ combine-as-imports = true
187187
[tool.ruff.per-file-ignores]
188188
"*/__init__.py" = ["F401"]
189189

190+
[tool.pytest.ini_options]
191+
addopts = "--tb=short --no-header --showlocals"
192+
testpaths = [
193+
"src/vcspull",
194+
"tests",
195+
"docs",
196+
]
197+
filterwarnings = [
198+
"ignore:The frontend.Option(Parser)? class.*:DeprecationWarning::",
199+
]
200+
190201
[build-system]
191202
requires = ["poetry_core>=1.0.0", "setuptools>50"]
192203
build-backend = "poetry.core.masonry.api"

setup.cfg

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)