@@ -43,35 +43,51 @@ jobs:
4343 run : tox -e test
4444 - name : Test with tox with postgresql
4545 run : tox -e test-with-postgresql
46- - name : Test installing notifications plugin
46+ - name : Test installing the notifications plugin
4747 run : |
4848 # Install the notifications plugin from examples/plugins/notifications
4949 if [ -d "examples/plugins/notifications" ]; then
5050 python -m pip install ./examples/plugins/notifications
5151 else
52- echo "Notifications plugin directory not found, skipping installation"
52+ echo "Notifications plugin directory not found; skipping installation"
5353 fi
54- - name : Test installing slack notifications plugin
54+ - name : Test installing the Slack notifications plugin
5555 run : |
56- # Install the slack notifications plugin from examples/plugins/notifications
57- if [ -d "examples/plugins/notifications/ notifications_slack" ]; then
58- python -m pip install ./examples/plugins/notifications/ notifications_slack
56+ # Install the Slack notifications plugin from examples/plugins/notifications_slack
57+ if [ -d "examples/plugins/notifications_slack" ]; then
58+ python -m pip install ./examples/plugins/notifications_slack
5959 else
60- echo "Slack notifications plugin directory not found, skipping installation"
60+ echo "Slack notifications plugin directory not found; skipping installation"
6161 fi
62- - name : Test installing conditional access plugin
62+ - name : Test installing the conditional access plugin
6363 run : |
64- # Install the slack notifications plugin from examples/plugins/notifications
64+ # Install the conditional access plugin from examples/plugins/conditional_access
6565 if [ -d "examples/plugins/conditional_access" ]; then
6666 python -m pip install ./examples/plugins/conditional_access
6767 else
68- echo "Conditional access plugin directory not found, skipping installation"
68+ echo "Conditional access plugin directory not found; skipping installation"
6969 fi
70- - name : Test installing health check plugin
70+ - name : Test installing the health check plugin
7171 run : |
72- # Install the slack notifications plugin from examples/plugins/notifications
72+ # Install the health check plugin from examples/plugins/health_check_plugin
7373 if [ -d "examples/plugins/health_check_plugin" ]; then
7474 python -m pip install ./examples/plugins/health_check_plugin
7575 else
76- echo "Health check plugin directory not found, skipping installation"
76+ echo "Health check plugin directory not found; skipping installation"
77+ fi
78+ - name : Test installing the Datadog metrics reporter plugin
79+ run : |
80+ # Install the Datadog metrics reporter plugin from examples/plugins/datadog_metrics_reporter
81+ if [ -d "examples/plugins/datadog_metrics_reporter" ]; then
82+ python -m pip install ./examples/plugins/datadog_metrics_reporter
83+ else
84+ echo "Datadog metrics reporter plugin directory not found; skipping installation"
85+ fi
86+ - name : Test installing the app group lifecycle audit logger plugin
87+ run : |
88+ # Install the app group lifecycle audit logger plugin from examples/plugins/app_group_lifecycle_audit_logger
89+ if [ -d "examples/plugins/app_group_lifecycle_audit_logger" ]; then
90+ python -m pip install ./examples/plugins/app_group_lifecycle_audit_logger
91+ else
92+ echo "App group lifecycle audit logger plugin directory not found; skipping installation"
7793 fi
0 commit comments