Browse code

Add printing the plugin list after the plugin install

This commit just adds a sanity check output to lib/tempest. It will
use tempest list-plugins to print a table of installed plugins after
the pip install phase is run for any provided plugins. This will
enable users to check that the plugins they think they're running are
detected by tempest.

Change-Id: Icff286da6c68ec9a57f2288458976341bc095875

Matthew Treinish authored on 2016/05/21 06:30:17
Showing 1 changed files
... ...
@@ -600,6 +600,8 @@ function install_tempest {
600 600
     PROJECT_VENV["tempest"]=${TEMPEST_DIR}/.tox/tempest
601 601
     if [[ $TEMPEST_PLUGINS != 0 ]] ; then
602 602
         tox -evenv-tempest -- pip install $TEMPEST_PLUGINS
603
+        echo "Checking installed Tempest plugins:"
604
+        tox -evenv-tempest -- tempest list-plugins
603 605
     fi
604 606
     popd
605 607
 }