forked from pool/python-pytest-doctestplus
* Fixing compatibility with pytest-asyncio. [#278] * Adding new directive doctest-requires-all to conditionally skip all doctests in narrative documentations based on availability of dependencies. [#280] * Adding new directive doctest-remote-data-all to conditionally skip all doctests in narrative documentations based on availability of remote-data. [#281] * Versions of Python <3.9 are no longer supported. [#274] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-doctestplus?expand=0&rev=41
23 lines
909 B
Diff
23 lines
909 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(-)
|
|
|
|
Index: pytest_doctestplus-1.4.0/tests/test_doctestplus.py
|
|
===================================================================
|
|
--- pytest_doctestplus-1.4.0.orig/tests/test_doctestplus.py
|
|
+++ pytest_doctestplus-1.4.0/tests/test_doctestplus.py
|
|
@@ -1210,7 +1210,7 @@ def test_main(testdir):
|
|
|
|
|
|
@pytest.mark.xfail(
|
|
- python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.12.3'),
|
|
+ python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.11.13', '3.12.3'),
|
|
reason='broken by https://github.com/python/cpython/pull/115440')
|
|
def test_ufunc(testdir):
|
|
pytest.importorskip('numpy')
|