summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-12 20:09:33 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-17 00:57:40 +0100
commit32f263a583864fade15dcec17bf38bfb42ed055b (patch)
treea02fca56bb9eb78e6677f02426d54e255ccd362a
parent8586367b6b591451c3acd0b5c8d8b9a43b28edb2 (diff)
gnu: python-pytest-asyncio: Update to 1.0.0.
* gnu/packages/check.scm (python-pytest-asyncio): Update to 1.0.0. [arguments] <test-flags>: Skip 4 tests. [propagated-inputs]: Add python-typing-extensions. Change-Id: Ie8be3423e62102943f8cc66114289a750ec63cb9
-rw-r--r--gnu/packages/check.scm21
1 files changed, 16 insertions, 5 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 77ce549c7d..77ecf630ad 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2579,20 +2579,31 @@ executed.")
(define-public python-pytest-asyncio
(package
(name "python-pytest-asyncio")
- (version "0.24.0")
+ (version "1.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytest_asyncio" version))
(sha256
- (base32 "0xmj8rndpv9gmwpilbfpc26sdy1bx60l46craf3mzn3nwlldi0fh"))))
+ (base32 "0gwbqikldfy5yvyzhi71h7vicni2dchj0iarsbmf2mj47z8n6m6i"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ ;; 4 failed, 163 passed
+ #~(list "-k" (string-join
+ (list "not test_strict_mode_ignores_unmarked_coroutine"
+ "test_strict_mode_ignores_unmarked_fixture"
+ "test_strict_mode_marked_test_unmarked_fixture_warning"
+ "test_strict_mode_marked_test_unmarked_autouse_fixture_warning")
+ " and not "))))
(native-inputs
- (list python-setuptools-scm
- python-setuptools
+ (list python-setuptools
+ python-setuptools-scm
python-wheel))
(propagated-inputs
- (list python-pytest))
+ (list python-pytest
+ python-typing-extensions))
(home-page "https://github.com/pytest-dev/pytest-asyncio")
(synopsis "Pytest support for asyncio")
(description "Python asyncio code is usually written in the form of