Skip to content
Snippets Groups Projects
flake8.yml 548 B
Newer Older
include: '//////templates/template.yml'
  extends: .retry
  image: ${CI_REGISTRY}/cubicweb/dockerfiles/python-logilab:latest
  rules:
    - if: '$TRIGGERED_FROM_OTHER_PROJECT'
      when: never
    - changes:
        - "**/*.py"
        - "*.py"
  stage: lint
  script:
    - tox -e flake8 -- --exit-zero --format gl-codeclimate --output-file gl-code-quality-report.json
    - tox -e flake8
  artifacts:
    when: always
    reports:
      codequality: gl-code-quality-report.json