diff --git a/scripts/dev_tools.py b/scripts/dev_tools.py index f92e8bd..a3be9ef 100644 --- a/scripts/dev_tools.py +++ b/scripts/dev_tools.py @@ -1,7 +1,7 @@ from subprocess import check_call def lint(): - check_call(['pylint']) + check_call(['pylint', '.']) def test(): check_call(['pytest', '--cov=mev_inspect', 'tests']) @@ -28,4 +28,4 @@ def build(): check_call(['docker', 'build', '-t', 'mev-inspect', '.']) def start_it(): - check_call(['docker', 'run', '-it', 'mev-inspect']) + check_call(['docker', 'run', 'mev-inspect'])