diff options
-rw-r--r-- | gnu/packages/check.scm | 21 |
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 |