.covio.yml fileΒΆ

In this file you need to specifie project name and violations. Example for django project:

violations:
  pep8: pep8 . --exclude='*migrations*'
  sloccount: sloccount .

You can use full-length violation declaration:

violations:
    pep8: pep8 . --exclude='*migrations*'
    pip_review:
        command: pip-review
        nofail: true

nofail - set force success status to violation.