Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / qa / tasks / teuthology_integration.py
1 import logging
2 from teuthology import misc
3 from teuthology.task import Task
4
5 log = logging.getLogger(__name__)
6
7
8 class TeuthologyIntegration(Task):
9
10     def begin(self):
11         misc.sh("""
12         set -x
13         pip install tox
14         tox
15         # tox -e py27-integration
16         tox -e openstack-integration
17         """)
18
19 task = TeuthologyIntegration