Browse code

Merge "Ensure testing configuration can run as late as possible"

Jenkins authored on 2016/12/01 01:30:38
Showing 1 changed files
... ...
@@ -11,13 +11,16 @@ if is_service_enabled tempest; then
11 11
         # Tempest config must come after layer 2 services are running
12 12
         :
13 13
     elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
14
+        # Tempest config must come after all other plugins are run
15
+        :
16
+    elif [[ "$1" == "stack" && "$2" == "post-extra" ]]; then
17
+        # local.conf Tempest option overrides
18
+        :
19
+    elif [[ "$1" == "stack" && "$2" == "test-config" ]]; then
14 20
         echo_summary "Initializing Tempest"
15 21
         configure_tempest
16 22
         echo_summary "Installing Tempest Plugins"
17 23
         install_tempest_plugins
18
-    elif [[ "$1" == "stack" && "$2" == "post-extra" ]]; then
19
-        # local.conf Tempest option overrides
20
-        :
21 24
     fi
22 25
 
23 26
     if [[ "$1" == "unstack" ]]; then