Skip to content

Commit 93a3434

Browse files
committed
Suppress pylint warning W0719
1 parent 98b1113 commit 93a3434

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

prepare-instances.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def get_repo_url(instance):
7979
# Prepare source directory
8080
git_dir = config.find('./settings/default/git').get('path')
8181
if not os.path.exists(git_dir):
82+
# pylint: disable=broad-exception-raised
8283
raise Exception(f'Git directory ({git_dir}) not found'
8384
' (check settings/default/git in config.xml)!')
8485
git_branch = instance.get('git_branch')

run-benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
as specified in a configuration file.
77
"""
88

9-
# pylint: disable=invalid-name
9+
# pylint: disable=invalid-name,broad-exception-raised
1010

1111
# Requirements: docker, bash, wget, git, tar, 7z
1212

0 commit comments

Comments
 (0)