diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-04-04 21:16:54 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:28 +0200 |
commit | e8e46bbeb599f608627c869f654b1598bc09837f (patch) | |
tree | e1880e76950aabf8100f88af29d1a58ccead6518 | |
parent | c42f6d6a18f08a8024aad5457c42807ce9ba2983 (diff) | |
download | guix-e8e46bbeb599f608627c869f654b1598bc09837f.tar.gz guix-e8e46bbeb599f608627c869f654b1598bc09837f.zip |
gnu: python-qasync: Ignore failing test.
* gnu/packages/python-xyz.scm (python-qasync)[arguments]{test-flags}:
Ignore failing tests.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a391e3d525..3083989675 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21815,7 +21815,10 @@ applications.") (base32 "0j6ksfnq9qfjdfppbkdz7jh6w0gnslwnckhafmlgim29b25g0z51")))) (build-system pyproject-build-system) (arguments - (list #:phases + (list #:test-flags + ;; XXX: Added with python@3.11, not fixed upstream. + #~(list "-k" "not test_regression_bug13") + #:phases #~(modify-phases %standard-phases (add-before 'check 'set-qpa (lambda _ |