]> git.proxmox.com Git - ceph.git/blame - ceph/qa/tasks/teuthology_integration.py
bump version to 18.2.2-pve1
[ceph.git] / ceph / qa / tasks / teuthology_integration.py
CommitLineData
7c673cae
FG
1import logging
2from teuthology import misc
3from teuthology.task import Task
4
5log = logging.getLogger(__name__)
6
7
8class 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
19task = TeuthologyIntegration