From ae9ca821c71b5229dded6e0a0386d2f700d5abdf Mon Sep 17 00:00:00 2001 From: Michal Fabik Date: Tue, 2 Feb 2021 16:28:57 +0100 Subject: [PATCH] Disable %check for RHEL > 8 and ELN The tests are pulling the fish package (which no one wants to maintain) into RHEL. Signed-off-by: Michal Fabik --- python-argcomplete.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python-argcomplete.spec b/python-argcomplete.spec index 2d71126..2d90fea 100644 --- a/python-argcomplete.spec +++ b/python-argcomplete.spec @@ -1,4 +1,9 @@ +# Disable check to avoid pulling unwanted package (fish) into RHEL 9 +%if 0%{?rhel} >= 9 && !0%{?epel} +%bcond_with check +%else %bcond_without check +%endif Name: python-argcomplete Summary: Bash tab completion for argparse