11
0
Files
python-pytest-doctestplus/add-missing-xfail-version.patch
Markéta Machová 42dea7e2e9 - Update to 1.3.0:
* add tests for ufuncs without docstrings, wrapped or not by @lpsinger in #248
  * Update skips for broken test by @lpsinger in #249
  * Fix multiline code in generate/update diff by @seberg in #253
  * Remove accidental debug print from new tests by @seberg in #254
  * refactored out runtime dependency on setuptools by @neutrinoceros in #258
  * adding python3.13 to CI and fix any incompatibilities by @bsipocz in #260
  * add one more python release to xfail list by @bsipocz in #266
  * Use hash for Action workflow versions and update if needed by @pllim in #267
  * Don't assume config exists. by @Carreau in #271
- Add add-missing-xfail-version.patch to fix broken test

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-doctestplus?expand=0&rev=39
2024-12-20 05:50:21 +00:00

23 lines
792 B
Diff

From 23eb3de76bc4581dfc8261b07a8a55cc03fea45b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= <bsipocz@gmail.com>
Date: Mon, 16 Dec 2024 19:05:07 -0800
Subject: [PATCH] TST: one more version to xfail
---
tests/test_doctestplus.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_doctestplus.py b/tests/test_doctestplus.py
index a88ca7b..fb0ac37 100644
--- a/tests/test_doctestplus.py
+++ b/tests/test_doctestplus.py
@@ -1142,7 +1142,7 @@ def f():
@pytest.mark.xfail(
- python_version() in ('3.11.9', '3.11.10', '3.12.3'),
+ python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.12.3'),
reason='broken by https://github.com/python/cpython/pull/115440')
def test_ufunc(testdir):
pytest.importorskip('numpy')