https://github.com/praw-dev/praw
Raw File
Tip revision: 9de8f3eb429996d6321f58c2df27f97e73d13f2a authored by Bryce Boe on 18 October 2016, 15:01:23 UTC
Bump to v4.0.0b21.
Tip revision: 9de8f3e
pre_push.py
#!/usr/bin/env python
"""Run static analysis on the project."""
from shutil import rmtree
from subprocess import CalledProcessError, check_call
from tempfile import mkdtemp
import sys


def do_process(*args):
    """Run program provided by args.

    Return True on success.

    Output failed message on non-zero exit and return False.

    Exit if command is not found.
    """
    print('Running: {}'.format(' '.join(args)))
    try:
        check_call(args)
    except CalledProcessError:
        print('\nFailed: {}'.format(' '.join(args)))
        return False
    except Exception as exc:
        sys.stderr.write(str(exc) + '\n')
        sys.exit(1)
    return True


def main():
    """Entry point to pre_push.py."""
    success = True
    success &= do_process('flake8', '--exclude=.eggs,docs')
    success &= do_process('pydocstyle', 'praw')
    success &= do_process('pylint', '--rcfile=.pylintrc', 'praw')

    tmp_dir = mkdtemp()
    try:
        success &= do_process('sphinx-build', '-W', 'docs', tmp_dir)
    finally:
        rmtree(tmp_dir)

    return 0 if success else 1


if __name__ == '__main__':
    sys.exit(main())
back to top