Skip to content

Commit a97953e

Browse files
authored
Remove unused configuration from pyproject.toml (#2729)
The PR removes pytest configuration from `pyproject.toml` since it was never used due to invalid name used `tool.pytest.ini.options` which never supported by pytest. The latest pytest warns about that explicitly: > PytestConfigWarning: Unknown config option: ini since the correct name is `tool.pytest.ini_options`. The configuration might be returned back to `pyproject.toml` when really needed.
1 parent f0a397c commit a97953e

2 files changed

Lines changed: 1 addition & 20 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
5656
* Dropped support for Python 3.9 [#2626](https://github.com/IntelPython/dpnp/pull/2626)
5757
* Removed the obsolete interface from DPNP to Numba JIT [#2647](https://github.com/IntelPython/dpnp/pull/2647)
5858
* Removed the `newshape` parameter from `dpnp.reshape`, which has been deprecated since dpnp 0.17.0. Pass it positionally or use `shape=` on newer versions [#2670](https://github.com/IntelPython/dpnp/pull/2670)
59+
* Removed unused `pytest` configuration from `pyproject.toml` [#2729](https://github.com/IntelPython/dpnp/pull/2729)
5960

6061
### Fixed
6162

pyproject.toml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -163,26 +163,6 @@ allow-wildcard-with-all = true
163163
[tool.pylint.miscellaneous]
164164
notes = ["FIXME", "XXX"]
165165

166-
[tool.pytest.ini.options]
167-
addopts = [
168-
"--junitxml=junit.xml",
169-
"--ignore setup.py",
170-
"--ignore run_test.py",
171-
"--cov-report term-missing",
172-
"--tb native",
173-
"--strict",
174-
"--durations=20",
175-
"-q -ra"
176-
]
177-
minversion = "6.0"
178-
norecursedirs = [
179-
".*",
180-
"*.egg*",
181-
"build",
182-
"dist",
183-
"conda-recipe"
184-
]
185-
186166
[tool.versioneer]
187167
VCS = "git"
188168
parentdir_prefix = "dpnp-"

0 commit comments

Comments
 (0)