diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:54:10 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:56 +0000 |
commit | 91f9fb68ac69eee82ba63c4e4a5b08a08b1c95c0 (patch) | |
tree | d21400a4f6fa039e15dd51818f4072675e11de94 | |
parent | 8cb1f36593cc3bb30a8da22bdbb8d418268b7a75 (diff) | |
download | guix-91f9fb68ac69eee82ba63c4e4a5b08a08b1c95c0.tar.gz guix-91f9fb68ac69eee82ba63c4e4a5b08a08b1c95c0.zip |
gnu: python-typeguard-4: Ignore failing tests.
* gnu/packages/python-xyz.scm (python-typeguard-4)
[arguments]<#:test-flags>: Ignore failing tests.
Change-Id: I0e23eb81cab942c9838d9561268f51b57a461d89
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 914463fb12..8cd29261b4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27430,7 +27430,7 @@ with PEP 484 argument (and return) type annotations.") (base32 "11yrc7pv2fajmicwiyc92sb5gphlw3zbxww8f2prrsh6rgdv6kqr")))) (build-system pyproject-build-system) (arguments - '()) + (list #:test-flags '(list "--ignore=tests/mypy"))) (propagated-inputs (list python-typing-extensions)) (native-inputs (modify-inputs (package-native-inputs python-typeguard) (append python-setuptools python-wheel))))) |