Skip to content

Commit 03b735c

Browse files
committed
Added badges in readme and omited schemas folder from coverage
1 parent bc60b9c commit 03b735c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Helm Values Manager
22

3+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Zipstack_helm-values-manager&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Zipstack_helm-values-manager)
4+
[![Build Status](https://github.com/Zipstack/helm-values-manager/actions/workflows/test.yml/badge.svg)](https://github.com/Zipstack/helm-values-manager/actions/workflows/test.yml)
5+
[![Security](https://github.com/Zipstack/helm-values-manager/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/Zipstack/helm-values-manager/actions/workflows/github-code-scanning/codeql)
6+
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=Zipstack_helm-values-manager&metric=coverage)](https://sonarcloud.io/summary/new_code?id=Zipstack_helm-values-manager)
7+
[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=Zipstack_helm-values-manager&metric=duplicated_lines_density)](https://sonarcloud.io/summary/new_code?id=Zipstack_helm-values-manager)
8+
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=Zipstack_helm-values-manager&metric=bugs)](https://sonarcloud.io/summary/new_code?id=Zipstack_helm-values-manager)
9+
[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=Zipstack_helm-values-manager&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=Zipstack_helm-values-manager)
10+
311
🚀 A powerful Helm plugin for managing values and secrets across multiple environments.
412

513
## Features

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ addopts = "-v"
5959

6060
[tool.coverage.run]
6161
source = ["helm_values_manager"]
62-
omit = ["tests/*"]
62+
omit = [
63+
"tests/*",
64+
"helm_values_manager/schemas/*"
65+
]
6366
branch = true
6467

6568
[tool.coverage.report]

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sonar.organization=zipstack
55
sonar.sources=helm_values_manager
66
sonar.tests=tests
77
sonar.python.version=3.9,3.10,3.11,3.12
8-
sonar.coverage.exclusions=tests/**,setup.py
8+
sonar.coverage.exclusions=tests/**,setup.py,helm_values_manager/schemas/**
99
sonar.python.coverage.reportPaths=coverage.xml
1010

1111
# Quality gate settings

0 commit comments

Comments
 (0)