Source code for coalib.coala_ci

import logging
import sys

from coalib.coala import main as coala_main


[docs]def main(debug=False): logging.warning('Use of `coala-ci` executable is deprecated, use ' '`coala --non-interactive` instead.') sys.argv.append('--non-interactive') return coala_main(debug=debug)
if __name__ == '__main__': # pragma: no cover sys.exit(main())