Metadata-Version: 2.0
Name: pylama2codeclimate
Version: 1.2
Summary: Converts the (parsable) pylama output to codeclimate.json format
Home-page: https://gitlab.com/alelec/pylama2codeclimate
Author: Andrew Leech
Author-email: andrew@alelec.net
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN

pylama2codeclimate
==================

Converts the (parsable) pylama output to codeclimate.json format.
This was written with the intention of using pylama to analyse python programs and report the output to gitlab ci code quality feature:
https://docs.gitlab.com/ee/user/project/merge_requests/code_quality_diff.html

It can be used in a gitlab-ci.yml stage like:

::

    codequality:
      stage: test
      script:
        - pip3 install pylama2codeclimate pylama
        - pylama --format parsable | pylama2codeclimate > codeclimate.json
      artifacts:
        when: always
        paths: [codeclimate.json]


