Merge "Add an explicit test-config phase to devstack plugins"

This commit is contained in:
Jenkins 2016-06-14 20:53:12 +00:00 committed by Gerrit Code Review
commit aeb8d81897
2 changed files with 8 additions and 0 deletions

View File

@ -99,6 +99,8 @@ The current full list of ``mode`` and ``phase`` are:
should exist at this point. should exist at this point.
- **extra** - Called near the end after layer 1 and 2 services have - **extra** - Called near the end after layer 1 and 2 services have
been started. been started.
- **test-config** Called at the end of devstack used to configure tempest
or any other test environments
- **unstack** - Called by ``unstack.sh`` before other services are shut - **unstack** - Called by ``unstack.sh`` before other services are shut
down. down.

View File

@ -1378,6 +1378,12 @@ if is_service_enabled cinder; then
fi fi
fi fi
# Run test-config
# ---------------
# Phase: test-config
run_phase stack test-config
# Fin # Fin
# === # ===