From a717c87665f92c10e4ca28232cb0edfc22700a3e Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 19 Jan 2026 08:49:35 -0800 Subject: [PATCH 1/2] Remove configuration from pyproject.toml per pytest warning --- pyproject.toml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6fbc23ac1b8..42e142f266e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -163,26 +163,6 @@ allow-wildcard-with-all = true [tool.pylint.miscellaneous] notes = ["FIXME", "XXX"] -[tool.pytest.ini.options] -addopts = [ - "--junitxml=junit.xml", - "--ignore setup.py", - "--ignore run_test.py", - "--cov-report term-missing", - "--tb native", - "--strict", - "--durations=20", - "-q -ra" -] -minversion = "6.0" -norecursedirs = [ - ".*", - "*.egg*", - "build", - "dist", - "conda-recipe" -] - [tool.versioneer] VCS = "git" parentdir_prefix = "dpnp-" From d06c5f68574e725cddbc9903219d997002d55987 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 19 Jan 2026 08:54:41 -0800 Subject: [PATCH 2/2] Add PR to the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e00afb6b1c6..42c87dde50f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum * Dropped support for Python 3.9 [#2626](https://github.com/IntelPython/dpnp/pull/2626) * Removed the obsolete interface from DPNP to Numba JIT [#2647](https://github.com/IntelPython/dpnp/pull/2647) * 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) +* Removed unused `pytest` configuration from `pyproject.toml` [#2729](https://github.com/IntelPython/dpnp/pull/2729) ### Fixed