Skip to main content

Ciqar is a tool for creating reports from different code quality analyzers output.

Project description

Ciqar

Ciqar is a tool for creating useful and (at least somewhat) pretty HTML reports from different code quality analyzers output in case the analyzers do not provide sufficient report or you want a uniform style. The report is generated from a Jinja template so that it can be customized. At the moment, MyPy and Pyright are supported as analyzers.

The name is made up from how we pronounced the earliest project name cqr (which is the abbreviation for code quality reports) as a word. Do not confuse it with Cigar 😉

Have a look at two HTML reports for Ciqar version 0.1.0 (some violations were added purposely 😉):

Build status

Installation

Ciqar releases are available on PyPI, so you can easily install it via pip:

pip install ciqar

Alternatively you can install from source code:

cd /path/to/ciqar/source
pip install -e .

Usage

Tell Ciqar the location of the analyzer output and the paths to search for source files. The search path configuration is usually the same as for your static code analyzer.

ciqar --analyzer-result mypy:/path/to/mypy.log --source /path/to/src/dir --output /path/to/destination/dir

The "Analyzer result URL" (--analyzer-result) is a URL string with the scheme part defining which code analyzer has been used and the path containing the path to result data. The kind of the path object (e.g. directory or file, file type) depends on the chosen analyzer. Currently supported analyzers:

Analyzer URL Scheme URL path
MyPy "mypy" Single file with the stdout output of the MyPy run.
Pyright "pyright" Single JSON file generated by pyright --outputjson.
ruff "ruff" Single JSON file generated by ruff --output-format json.

--source may be provided several times to search more than one directory. In addition (or alternatively) it is also possible to exclude files or directories from the configured search paths with the --exclude option, which may also be provided several times:

ciqar --source /path/to/src/dir --exclude /path/to/src/dir/examples --exclude /path/to/src/dir/snippet.py --analyzer-result [...] --output [...]

The --output option simply defines the directory to write the report into. Any existing files will be overwritten.

The optional --template parameter defines the report template to use, allowing to generate different kinds of reports. The template name must be specified by its name:

ciqar -r mypy:mypy.log -s src -o output -t html_detailed

At the moment the following report templates are available:

Template name Description
html_detailed Detailed HTML report including file lists, rule list and source code listings.
html_singlepage More compact, single-page HTML report listing all violations.

Examples (run from the repository root)

Create MyPy report for Ciqar:

mypy --config-file mypy.ini src test | tee mypy.log
ciqar -r mypy:mypy.log -s src -s test -o report-mypy

Create Pyright report for Ciqar:

pyright --outputjson src test > pyright.json
ciqar -r pyright:pyright.json -s src -s test -o report-pyright

Create ruff report for Ciqar:

ruff check src/ test/ --output-format json > ruff.json
ciqar -r ruff:ruff.json -s src -s test -o report-ruff

Some hints

For MyPy reports, it is necessary to set hide_error_codes = False in the config (which is default).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ciqar-1.1.0.tar.gz (60.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ciqar-1.1.0-py3-none-any.whl (48.1 kB view details)

Uploaded Python 3

File details

Details for the file ciqar-1.1.0.tar.gz.

File metadata

  • Download URL: ciqar-1.1.0.tar.gz
  • Upload date:
  • Size: 60.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for ciqar-1.1.0.tar.gz
Algorithm Hash digest
SHA256 967936b0bb5b8d8bb8848dea695bd59dc720dd8306d1e087b996e18b53a275b9
MD5 9325b945df00abb958730a8ed517461e
BLAKE2b-256 cc5231eeb4e470dde268426076732ce477c14ef5017ddf158727fd17644ff25a

See more details on using hashes here.

File details

Details for the file ciqar-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: ciqar-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.3

File hashes

Hashes for ciqar-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 29df8919599f9d919dae4dbe208a191d5d9f7575f8ab223bcdee01f21db3f25a
MD5 57a1e9d43fafc0c448e07a11dcd2982d
BLAKE2b-256 8966bdab7605033398a4b2adbd65b01953b7a736b32a2dfbb1b68fa0bc31e431

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page