Removing of old check function from manage.py

This commit is contained in:
Roman Mogilatov 2015-03-23 16:40:59 +02:00
parent 569ec912d2
commit e8c3b6a620

View File

@ -23,16 +23,5 @@ def tag():
os.system('git push --tags') os.system('git push --tags')
@manager.command
def check():
"""Check `objects` library and examples with code analyzers."""
os.system('pylint objects/ --rcfile=./.pylintrc')
os.system('flake8 objects/')
os.system('pep257 objects/')
os.system('flake8 examples/')
os.system('pep257 examples/')
if __name__ == '__main__': if __name__ == '__main__':
manager.main() manager.main()