Collects warnings while testing and generates a GitLab Code Quality Report.
Project description
GitLab Code Quality for Pytest
Enables GitLab to collect and show warnings emitted during your test runs through their [code quality report].
| Terminal | GitLab |
|---|---|
If you run GitLab Premium or Ultimate, you should even see the warnings right next to the code in the diff view of merge requests. The official documentation contains more information and screenshots.
Getting Started
Install the plugin using a package manager of your choice
pip install pytest-gitlab-code-quality
then specify the output location for the report using the --gitlab-code-quality-report option
pytest --gitlab-code-quality-report=pytest-warnings.json
In GitLab CI, this will look similar to this:
# .gitlab-ci.yml
pytest:
stage: test
image: python
script:
- pip install -r requirements.txt # Or however you install your dependencies
- python -m pytest --gitlab-code-quality-report=pytest-warnings.json
# The three lines below are required in order for the warnings to show up!
artifacts:
reports:
codequality: pytest-warnings.json
Motivation
Some warnings are only surfaced during runtime, so static analyzers do not always catch them. The screenshots at the top of this document contain the example of a questionably configured SQLAlchemy model. Tests are a cheap way to surface such issues.
While you may run the tests locally and see these warnings there, you also might overlook them or don't know whether they were introduced by your changes or were already present before. Either way, I think it makes sense to explicitly surface and track them during code review instead of burying them in the CI logs that nobody looks at when the tests pass. And that is exactly why this plugin was created.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_gitlab_code_quality-0.3.0.tar.gz.
File metadata
- Download URL: pytest_gitlab_code_quality-0.3.0.tar.gz
- Upload date:
- Size: 707.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9f96e00cfb96c046c1140aa0036b08a5abdb0c8de0a6a4b4a937fb4733b8101
|
|
| MD5 |
78e2ef257e80dbbb0dff4f6c28e949b4
|
|
| BLAKE2b-256 |
11416f1d6943240990c7c2b1be7a82cc6aaacffa338aae1d03e0ac4f51f194a9
|
File details
Details for the file pytest_gitlab_code_quality-0.3.0-py3-none-any.whl.
File metadata
- Download URL: pytest_gitlab_code_quality-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b24b5ba2457eb92b82a91c29212ae574e6b45f2a16dd433f4accf89bb1659ef6
|
|
| MD5 |
1aa17f238d54ba509647f12dca47ae59
|
|
| BLAKE2b-256 |
81d2730a7cd79f7cd30bd26e3cfa4e6f2e18a7a80ea25334b30ee417d47f70cc
|