blob: 6b15745fa74da9645041ad646db4f66a85969bd5 [file] [log] [blame]
azvyagintsevf19ddc82018-02-20 18:39:32 +02001#!/bin/bash
2
3set -xe
4
5function _info(){
Oleksii Butenkoe559b902018-10-23 18:58:37 +03006 echo -e "=== INFO: QUEENS"
azvyagintsevf19ddc82018-02-20 18:39:32 +02007 set +x
8 echo -e "=== INFO: tempest version:"
9 tempest --version
10 echo -e "=== INFO: installed plugins:"
11 tempest list-plugins
12 echo -e "=== INFO: tempest pip's:"
13 pip freeze |grep -i tempest | sort
14 echo -e "============================"
15 set -x
16}
17
18_info
19exec "$@"