]> git.proxmox.com Git - ceph.git/blob - ceph/qa/tasks/teuthology_integration.py
bump version to 18.2.4-pve3
[ceph.git] / 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