vnpy/tools/ci/check_all.py
nanoric ed1758a26a [Add] use flake8
[Mod] use black instead of yapf
2019-01-24 09:06:31 -04:00

14 lines
305 B
Python

from tools.check.check_format import check_format
from tools.check.check_linter import check_linter
from tools.check.utils import check_and_warning
def check_all():
return check_and_warning(check_format, check_linter)
if __name__ == "__main__":
if not check_all():
exit(1)
exit(0)