Add unit tests for orchestrator activities and workflows - Implement tests for Activities class, covering initialization and prepare_activity method. - Create tests for Couchbase class, including successful and failed query loading. - Add tests for SlotManager class, verifying OPC slot loading and active ingestor retrieval. - Develop tests for TemporalManager class, focusing on schedule loading functionality. - Introduce tests for Orchestrator class, ensuring proper execution of workflow activities. - Establish a new test suite for orchestrator activities and workflows in the tests directory.
44 lines
628 B
Plaintext
44 lines
628 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/**
|
|
**/couchbase_data/**
|
|
**/redis_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
|
|
|
|
# git keys
|
|
git_key* |