Update .gitignore and refactor metrics.py, activities.py, and gates.py for improved clarity and consistency. Added coverage.xml and cache directories to .gitignore. Standardized string formatting and parameter handling in metrics and activities classes, enhancing code readability. Removed the deprecated faker.py file and adjusted related tests accordingly.
46 lines
623 B
Plaintext
46 lines
623 B
Plaintext
# Ignorar volumes do Docker
|
|
docker-compose.override.yml
|
|
**/db_data/
|
|
**/kafka-volume/
|
|
**/zookeeper-volume/
|
|
**/mage_data/
|
|
**/minio_data/
|
|
**/venv/
|
|
**/certs/*.pem
|
|
**/certs/*.der
|
|
**/certs/*.csr
|
|
**/deploy/*.yaml
|
|
scouter/.file_versions/
|
|
scouter/pipelines/**/triggers.yaml
|
|
**/postgres_data/**
|
|
# Ignorar arquivos e diretórios de cache do Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Ignorar logs
|
|
*.log
|
|
|
|
# Ignorar arquivos de configuração locais
|
|
.vscode/
|
|
.pytest_cache/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Ignorar arquivos temporários
|
|
*.tmp
|
|
*.bak
|
|
*.old
|
|
.secret
|
|
|
|
# Ignorar coverage
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
git_log
|
|
|
|
.env
|
|
.ruff_cache/
|
|
.mypy_cache/ |