We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug current convert_coverage.sh script:
convert_coverage.sh
#!/bin/sh docker cp backend:/root/core/.coverage .coverage sed -i "s;/root/core/;${PWD}/backend/core/;g" .coverage coverage xml --rcfile testing/.coveragerc
We need to account for the new modules, which are under backend-services
backend-services
Structure is as follows:
backend-services/ ├── service │ ├── AUTHORS.md │ ├── core │ │ ├── service.py │ │ └── __init__.py │ ├── Dockerfile │ ├── entrypoint │ ├── LICENSE │ ├── Makefile │ ├── requirements.txt │ └── wait-for ..........
where service = [autoignore, autostarter, configuration, database, detection, fileobserver, mitigation, notifier, prefixtree]
autoignore
autostarter
configuration
database
detection
fileobserver
mitigation
notifier
prefixtree
Affected Component(s)
Expected behavior Backend services need to be properly covered.
The text was updated successfully, but these errors were encountered:
@slowr should I move this to another release?
Sorry, something went wrong.
No branches or pull requests
Describe the bug
current
convert_coverage.sh
script:We need to account for the new modules, which are under
backend-services
Structure is as follows:
where service = [
autoignore
,autostarter
,configuration
,database
,detection
,fileobserver
,mitigation
,notifier
,prefixtree
]Affected Component(s)
Expected behavior
Backend services need to be properly covered.
The text was updated successfully, but these errors were encountered: