diff options
Diffstat (limited to 'host/tests')
-rw-r--r-- | host/tests/verify_fbs_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/tests/verify_fbs_test.py b/host/tests/verify_fbs_test.py index c3ee763e4..261037c4f 100644 --- a/host/tests/verify_fbs_test.py +++ b/host/tests/verify_fbs_test.py @@ -26,7 +26,8 @@ class VerifyFBSTest(unittest.TestCase): spec.loader.exec_module(update_fbs) try: git_exe = update_fbs.find_executable("git") - except RuntimeError: + # pylint: disable=broad-except + except Exception: # No git, no test. We pass b/c git is not a UHD dependency. return sys.argv.append('--verify') |