Skip to main content

No project description provided

Project description

cg-flake8-reporter

A Flake8 reporter plugin for CodeGrade AutoTest v2.

This plugin writes messages to CodeGrade AutoTest v2's structured output channel. For each violation Flake8 reports, a comments message is written as described in CodeGrade's documentation. When Flake8 finishes its analysis, a final message is written with the amount of points that were achieved in the code quality run.

Configuration

In order to use the custom reporter, make sure you have installed both Flake8 and this package:

python3 -m pip install flake8==6.0.0
python3 -m pip install cg-flake8-reporter

This reporter is registered with Flake8 as cg-flake8-reporter, to use it run flake with the option --format=cg-flake8-reporter.

The custom reporter adds a few new options to Flake8: cg-points-deducted, cg-flake8-fd and cg-base-path.

cg-points-deducted

The cg-points-deducted option makes it possible to configure the amount of points (in percentage) that each violation deducts from the total points.

The cg-points-deducted expectes a string in the following format as input:

'info:<percentage>,warning:<percentage>,error:<percentage>'

Each of the violation levels must be present in the provided string. The percentage provided should be an integer number without the % symbol.

If you wish for a violation level to not deduct points, simply set it to 0.

cg-flake8-fd

The cg-flake8-fd option makes it possible to configure where the reporter will write its output. By default, the value is 1, which means the reporter will write to stdout. Within AutoTest v2 it is recommended to use file descriptor 3 so that the comments will be visible in CodeGrade's UI. The Flake8 step will already set this up for you.

cg-base-path

The cg-base-path allows you to restrict which files the reporter will report. For example, if you only want files to be reported within the server directory of the student, you may want to set --cg-base-path=~/student/server/. Beware, the Flake8 step always sets cg-base-path to the root of the student's workspace. If you want to customize this, you should use a Custom Test step instead.

cg-code-prefix-mapping

The cg-code-prefix-mapping options allows you to create a custom mapping between error code prefixes and severities. The code prefixes are groups of errors. The option expects a string in the following format:

'_prefix_:_severity_,_prefix_2_:_severity_2_,...'

The normal mapping can be represented as follows:

'F:error,E:error,W:warning:C:info,N8:info'

The standard mapping will always be set, however you can overwrite existing keys with new values should you want this.

This mapping also allows you to use libraries that introduce new error types, which will use a different, unknown code prefix.

cg-default-severity

The cg-default-severity option will set provide a fallback severity, when we have checked the default mapping, (plus your supplied mapping,) and could not find any set severity for the code prefix.

For example, when we install a library that adds error codes in the form of D..., where the dots are the actual error code numbers. We will search for an entry in the severity mapping, and fallback to the default if we cannot find anything.

The default value for this option is: 'unset', which means that there can be no deduction for this type of code, and will not get flagged as categorised errors.

Usage

To run Flake8 with the custom reporter:

python3 -m flake8 \
    --format=cg-flake8-reporter \
    --cg-points-deducted='info:1,warning:3,error:5,unknown:0' \
    --cg-flake8-fd=1 \
    ./

To run flake8 when having a library installed that adds error codes with prefix D and assign the info severity to each error starting with a D:

python3 -m flake8 \
    --format=cg-flake8-reporter \
    --cg-points-deducted='info:1,warning:3,error:5,unknown:0' \
    --cg-code-prefix-mapping='D:info' \
    --cg-flake8-fd=1 \
    ./

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

cg_flake8_reporter-1!1.0.2.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

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

cg_flake8_reporter-1!1.0.2-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file cg_flake8_reporter-1!1.0.2.tar.gz.

File metadata

  • Download URL: cg_flake8_reporter-1!1.0.2.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cg_flake8_reporter-1!1.0.2.tar.gz
Algorithm Hash digest
SHA256 4098aa180ea193aff685853a222d82a460637593a7f81e9a05a058c63d52d19b
MD5 03de2b453485922a800ec76783b8fab1
BLAKE2b-256 cadd787c29b58a429e1dd6a935f3ef0ea29fec926c0c2c3ebed33c64dfccae5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cg_flake8_reporter-1!1.0.2.tar.gz:

Publisher: production_build.yml on CodeGra-de/CodeGra.de

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cg_flake8_reporter-1!1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for cg_flake8_reporter-1!1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fd153bbcfd5ad9538d57353e274b2600dffa5da97785bc20fec1772826ed511d
MD5 8c5897efdcd21c66f4a05ebd2bad3530
BLAKE2b-256 f5f9625261ea3657be0803bdda515ca94bcb7fcb0a580e3832898e55d5e749d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cg_flake8_reporter-1!1.0.2-py3-none-any.whl:

Publisher: production_build.yml on CodeGra-de/CodeGra.de

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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