Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
nhomar committed Oct 30, 2017
1 parent d8b8c75 commit d00f65e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mqt/lints.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@ def do_magic(self): # TODO: rename this variable this is a temporal name
is_pull_request = self.PULL_REQUEST
branch_base = self.BRANCH
version = self.VERSION
extra_params_cmd = ['--sys-paths', join(self.path, 'pylint_deprecated_modules'), '--extra-params', '--load-plugins=pylint_odoo',]
extra_params_cmd = [
'--sys-paths',
join(self.path, 'pylint_deprecated_modules'),
'--extra-params', '--load-plugins=pylint_odoo',]
exit_status = 0
if not version and git_work_dir:
repo_path = join(git_work_dir, '.git')
branch_name = GitRun(repo_path).get_branch_name()
Expand Down Expand Up @@ -256,6 +260,7 @@ def do_magic(self): # TODO: rename this variable this is a temporal name
"\nNext checks are still in beta "
"they won't affect your build status for now: "
'\n' + ', '.join(sorted(beta_msgs))))
return exit_status

def flake(self):
"""Just run Flake8 per directory"""
Expand Down

0 comments on commit d00f65e

Please sign in to comment.