* Code Cleanup (#158) * print coverage report * create sonar-project property file * install all py dependencies in one step * code cleanup * reduce cognitive complexity * do not build on *.yml changes * optimise versionstring handling (#159) - Reading the version string from the image updates it even if the image is re-pulled without re-deployment * fix linter warning * exclude *.pyi filese * ignore some rules for tests * cleanup (#160) * Sonar qube 3 (#163) fix SonarQube warnings in modbus.py * Sonar qube 3 (#164) * fix SonarQube warnings * Sonar qube 3 (#165) * cleanup * Add support for TSUN Titan inverter Fixes #161 * fix SonarQube warnings * fix error * rename field "config" * SonarQube reads flake8 output * don't stop on flake8 errors * flake8 scan only app/src for SonarQube * update flake8 run * ignore flake8 C901 * cleanup * fix linter warnings * ignore changed *.yml files * read sensor list solarman data packets * catch 'No route to' error and log only in debug mode * fix unit tests * add sensor_list configuration * adapt unit tests * fix SonarQube warnings * Sonar qube 3 (#166) * add unittests for mqtt.py * add mock * move test requirements into a file * fix unit tests * fix formating * initial version * fix SonarQube warning
27 lines
878 B
Properties
27 lines
878 B
Properties
sonar.projectKey=s-allius_tsun-gen3-proxy
|
|
sonar.organization=s-allius
|
|
|
|
# This is the name and version displayed in the SonarCloud UI.
|
|
sonar.projectName=tsun-gen3-proxy
|
|
#sonar.projectVersion=1.0
|
|
|
|
|
|
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
|
|
sonar.sources=app/src/
|
|
|
|
# Encoding of the source code. Default is default system encoding
|
|
#sonar.sourceEncoding=UTF-8
|
|
|
|
sonar.python.version=3.12
|
|
sonar.tests=system_tests/,app/tests/
|
|
sonar.exclusions=**/.vscode/**/*
|
|
# Name your criteria
|
|
sonar.issue.ignore.multicriteria=e1,e2
|
|
|
|
# python:S905 : Remove or refactor this statement; it has no side effects
|
|
sonar.issue.ignore.multicriteria.e1.ruleKey=python:S905
|
|
sonar.issue.ignore.multicriteria.e1.resourceKey=app/tests/*.py
|
|
|
|
sonar.issue.ignore.multicriteria.e2.ruleKey=python:S905
|
|
sonar.issue.ignore.multicriteria.e2.resourceKey=systems_tests/*.py
|