mirror of
https://github.com/clearlinux/autospec.git
synced 2026-04-28 03:02:59 +00:00
Ignore new B902 warnings from flake8
These warnings are worth addressing eventually, but they shouldn't be blockers for now. The warnings are: autospec/abireport.py:59:1: B902 blind except Exception: statement autospec/abireport.py:73:1: B902 blind except Exception: statement autospec/abireport.py:128:1: B902 blind except Exception: statement autospec/abireport.py:165:1: B902 blind except Exception: statement autospec/abireport.py:191:1: B902 blind except Exception: statement autospec/abireport.py:237:1: B902 blind except Exception: statement autospec/abireport.py:262:1: B902 blind except Exception: statement autospec/abireport.py:273:1: B902 blind except Exception: statement autospec/autospec.py:237:1: B902 blind except Exception: statement autospec/autospec.py:307:1: B902 blind except Exception: statement autospec/build.py:177:1: B902 blind except Exception: statement autospec/buildreq.py:563:1: B902 blind except Exception: statement autospec/buildreq.py:600:1: B902 blind except Exception: statement autospec/buildreq.py:689:1: B902 blind except Exception: statement autospec/buildreq.py:713:1: B902 blind except Exception: statement autospec/buildreq.py:735:1: B902 blind except Exception: statement autospec/commitmessage.py:51:1: B902 blind except Exception: statement autospec/commitmessage.py:293:1: B902 blind except Exception: statement autospec/config.py:475:1: B902 blind except Exception: statement autospec/config.py:821:1: B902 blind except Exception: statement autospec/pkg_integrity.py:551:1: B902 blind except Exception: statement autospec/pkg_integrity.py:669:1: B902 blind except Exception: statement autospec/pkg_integrity.py:765:1: B902 blind except Exception: statement Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -1,5 +1,5 @@
|
||||
check: autospec/*.py
|
||||
@flake8 --ignore=D100,I201 $^
|
||||
@flake8 --ignore=B902,D100,I201 $^
|
||||
|
||||
test_download:
|
||||
PYTHONPATH=${CURDIR}/autospec python3 tests/test_download.py
|
||||
|
||||
Reference in New Issue
Block a user