blob: 18c8d80e0e4fe756fa2a461a156e9b3d3c9c5582 [file] [log] [blame]
#!/bin/bash
set -xe
function _info(){
set +x
echo -e "=== INFO: tempest version:"
tempest --version
echo -e "=== INFO: installed plugins:"
tempest list-plugins
echo -e "=== INFO: tempest pip's:"
pip freeze |grep -i tempest | sort
echo -e "============================"
set -x
}
_info
exec "$@"