Revision fd74a12d3cb60c90d55d5cbab4400250fe9b54ed authored by Andreas Tolfsen on 31 March 2016, 13:46:13 UTC, committed by Andreas Tolfsen on 31 March 2016, 13:46:13 UTC
Adds pytest to tools/localpaths.py.
1 parent e64ef88
Raw File
lint
#!/usr/bin/env python
import sys

try:
    from tools.lint import lint
except ImportError:
    print("tools.lint not found.  Did you forget to run "
          '"git submodule update --init --recursive"?')
    sys.exit(2)

sys.exit(0 if lint.main() == 0 else 1)
back to top