* update changelog * add addon-dev target * initial version * use prebuild docker image * initial version for multi arch images * fix missing label latest * create log and config folder first. * clean up and translate to english * set labels with docker bake * add addon-debug and addon-dev targets * pass version number to proxy at runtime * add two more callbacks * get addon version from app * deploy rc addon container to ghcr * move ha_addon test into subdir * fix crash on container restart - mkdir -p returns no error even if the director exists * prepation for unit testing - move script into a method * added further config to schema * typo fixed * added monitor_sn + PV-strings 3-6 to create toml * added options.json for testing * prepare pytest and coverage for addons * fix missing values in resulting config.toml - define mqtt default values - convert filter configuration * first running unittest for addons * add ha_addons * increase test coverage * test empty options.json file for HA AddOn * fix pytest call in terminal * improve test coverage * remove uneeded options.json * move config.py into subdir cnf --------- Co-authored-by: Michael Metz <michael.metz@siemens.com>
27 lines
936 B
Properties
27 lines
936 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/,ha_addons/ha_addon/rootfs/home/
|
|
|
|
# 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/,ha_addons/ha_addon/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
|