File tree 3 files changed +17
-10
lines changed
3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ $ pip install --user --upgrade --pre libtmux
14
14
15
15
<!-- Maintainers and contributors: Insert change notes for the next release above -->
16
16
17
+ ### Packaging
18
+
19
+ - Move pytest configuration to ` pyproject.toml ` (#499 )
20
+
17
21
### Breaking changes
18
22
19
23
- Python 3.7 Dropped (#497 )
Original file line number Diff line number Diff line change @@ -153,6 +153,19 @@ combine-as-imports = true
153
153
[tool .ruff .per-file-ignores ]
154
154
"*/__init__.py" = [" F401" ]
155
155
156
+ [tool .pytest .ini_options ]
157
+ addopts = " --tb=short --no-header --showlocals --doctest-docutils-modules --reruns 2 -p no:doctest"
158
+ doctest_optionflags = " ELLIPSIS NORMALIZE_WHITESPACE"
159
+ testpaths = [
160
+ " src/libtmux" ,
161
+ " tests" ,
162
+ " docs" ,
163
+ " README.md" ,
164
+ ]
165
+ filterwarnings = [
166
+ " ignore:The frontend.Option(Parser)? class.*:DeprecationWarning::" ,
167
+ ]
168
+
156
169
[build-system ]
157
170
requires = [" poetry_core>=1.0.0" ]
158
171
build-backend = " poetry.core.masonry.api"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments