Email Notifications
DCD can be configured to notify you when a test run is complete.
Simply make the changes to your config.yaml:
To get notified on failures
# .maestro/config.yaml
notifications:
  email:
    enabled: true
    recipients:
      - [email protected]
      - [email protected]To get notified on successes and failures
# .maestro/config.yaml
notifications:
  email:
    enabled: true
    onSuccess: true
    recipients:
      - [email protected]
      - [email protected]Last updated
Was this helpful?