pylint call fixed

This commit is contained in:
Patrick Daly 2021-07-23 09:25:17 -07:00
parent acf32966f7
commit f3a4c4e60e

View File

@ -1,7 +1,7 @@
from subprocess import check_call from subprocess import check_call
def lint(): def lint():
check_call(['pylint']) check_call(['pylint', '.'])
def test(): def test():
check_call(['pytest', '--cov=mev_inspect', 'tests']) check_call(['pytest', '--cov=mev_inspect', 'tests'])
@ -28,4 +28,4 @@ def build():
check_call(['docker', 'build', '-t', 'mev-inspect', '.']) check_call(['docker', 'build', '-t', 'mev-inspect', '.'])
def start_it(): def start_it():
check_call(['docker', 'run', '-it', 'mev-inspect']) check_call(['docker', 'run', 'mev-inspect'])